作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
你如何将rxtx dll包含在minecraft forge mod中我对rxtxcomm.jar文件没有任何问题,但我无法将根文件夹包含在类路径中(像平常一样),因为这样游戏就不会因为重复而启动mod(我目前正在使用 eclipse)
最佳答案
在你的 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 jar 和 dll 添加到我的 cookies jar 中。
关于java - 如何将 java rxtx 库包含到我的 Minecraft mod 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38547195/
我是一名优秀的程序员,十分优秀!