1
你會如何包括在我的世界鍛模的RXTX的DLL我與rxtxcomm.jar文件沒有任何麻煩,但我不能包括在類路徑的根文件夾(如正常的),因爲隨後的比賽不會推出,因爲重複國防部(IM目前使用eclipse)如何將java rxtx庫包含到我的Minecraft mod中?
你會如何包括在我的世界鍛模的RXTX的DLL我與rxtxcomm.jar文件沒有任何麻煩,但我不能包括在類路徑的根文件夾(如正常的),因爲隨後的比賽不會推出,因爲重複國防部(IM目前使用eclipse)如何將java rxtx庫包含到我的Minecraft mod中?
在你的build.gradle:
dependencies {
// create a directory called libs in the directory where the build.gradle is
compile fileTree(dir: 'libs', include: '*.jar')
}
jar {
// make in the directory where the build.gradle is a native folder
// and put your dll's there.
from('native') {
into('org/sqlite/native')
}
}
processResources
{
//... add this below what's already there under process resources.
copy {
from('/native')
into('/org/sqlite/native')
}
}
這東西組合對我的作品的sqlite的罐子和DLL的添加到我的誰拿我的餅乾罐子。
非常感謝,但可悲的是我已經找到了另一種方式,我有另一個程序,它運行在服務器和國防部連接到該服務器,並且服務器然後轉發給通過RXTX Arduino的,我很多喜歡它,因爲我可以很容易與terraria,csgo,arma,我自己的遊戲,kerbal space program,war thunder等一起工作。 – Jeremiah