gpt4 book ai didi

java - Gradle Jar结构与实际项目结构不同

转载 作者:行者123 更新时间:2023-12-03 03:51:23 28 4
gpt4 key购买 nike

我正在尝试使用gradle构建我的项目,但是由于某些原因,资源被置于与实际级别不同的级别。
这是构建:

apply plugin: 'java'
version = '1.1'
archivesBaseName = 'DesktopOmegle'
repositories {
//mavenCentral()
maven {
url 'http://oss.sonatype.org/content/repositories/snapshots/'
url "http://repo1.maven.org/maven2"
}
}
dependencies {
compile 'org.json:json:20090211'
compile 'org.fxmisc.richtext:richtextfx:0.6.4'
}
jar {
from {
configurations.compile.collect {
it.isDirectory() ? it : zipTree(it)
}
}

manifest {
attributes 'Main-Class': 'main.java.client.OmegleClient'
}
}
task copyDeps(type: Copy) {
from configurations.runtime
into 'lib'
rename {
String fileName ->
fileName.replace('-20090211', '')
}
}
build.dependsOn(copyDeps)

这是项目的实际结构(仅显示src文件夹):
|src-
| main-
| java-
| client-...
| server-...
| resources-
| images-...

最终的jar结构如下:
|jar-
| images-...
| main-
| java-
| client-...
| server-...
| META_INF-...
| org-...

显然那不是我想要的。我希望 jar 中的图像真实存在于main.resources内部。为什么jar不坚持项目的真实结构?有人可以帮助我纠正这种情况吗?

编辑:
用于访问资源的代码段:
ClientConstants.RESOURCES = "/main/resources/images/";
if (status.equals(ClientConstants.STATUS_OFFLINE))
{
img = ClientConstants.RESOURCES+"ON.png";
action = "Connect";
}
else
{
img = ClientConstants.RESOURCES+"OFF.png";
action = "Disconnect";
}
Image imageConnect = new Image(getClass().getResourceAsStream(img));
ImageView viewBottom = new ImageView(imageConnect);

最佳答案

当您的项目由gradle管理时,您应该始终使用maven引入的标准布局,或者有很好的借口使用任何其他布局。 Here,您可以找到示例项目,该示例项目显示如何使用此布局并读取稍后将包含在jar中的资源。这些资源将始终放在jar文件的根目录下。在下面,您可以找到示例代码来说明如何读取此类文件:

private void readResource(String path) {
InputStream in = getClass().getClassLoader().getResourceAsStream(path);
BufferedReader reader = new BufferedReader(new InputStreamReader(in));

try (Scanner scanner = new Scanner(reader)) {

while (scanner.hasNextLine()) {
String line = scanner.nextLine();
System.out.println("LINE: " + line);
}

scanner.close();

} catch (Exception e) {
e.printStackTrace();
}
}

示例代码取自 here

关于java - Gradle Jar结构与实际项目结构不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30861126/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com