一直试图让这一整天工作,但它总是会出错,甚至在完成所有研究后我仍然无能为力
这是方法,当前返回错误的行是
File file = new File( url.toURI() );
我不确定我必须做些什么才能让它发挥作用
public void preloadModelsTwo() {
String slash = System.getProperty("file.separator");
try {
URL url = getClass().getResource("."+ slash +"Patches" + slash+"Models"+slash);
File file = new File( url.toURI() );
File[] fileArray = file.listFiles();
for(int y = 0; y < fileArray.length; y++) {
String s = fileArray[y].getName();
if (s != "") {
byte[] buffer = readFile("."+ slash +"Patches" + slash+"Models"+slash+""+s);
Model.method460(buffer, Integer.parseInt(getFileNameWithoutExtension(s)));
//System.out.println("Read model: " + s);
}
}
} catch (Exception E) {
System.out.println("error with secondary model screening");
E.printStackTrace();
}
}
我所知道的是,这些东西需要被视为资源,但是我不确定我需要改变什么,我确定我做了所有必要的改变,但它仍然没有工作
任何帮助表示赞赏
编辑:
我一直在搞乱这个,这是一个似乎工作得很好的新方法,除了它无法阅读
public String removeNonDigits(String text) {
int length = text.length();
StringBuffer buffer = new StringBuffer(length);
for(int i = 0; i < length; i++) {
char ch = text.charAt(i);
if (Character.isDigit(ch)) {
buffer.append(ch);
}
}
return buffer.toString();
}
public JarEntry entry;
public void preloadModelsTwo() {
String slash = System.getProperty("file.separator");
try {
JarFile jarFile = new JarFile("SilabGarza.jar");
for(Enumeration em = jarFile.entries(); em.hasMoreElements();) {
String s= em.nextElement().toString();
if(s.contains(".dat")){
entry = jarFile.getJarEntry(s);
InputStream input = jarFile.getInputStream(entry);
System.out.println("input = "+input);
//byte[] buffer = readFile(s);
String s2 = removeNonDigits(s);
//Model.method460(buffer, Integer.parseInt(s2));
System.out.println("Found: "+s);
System.out.println("formd: "+s2);
input.close();
}
}
jarFile.close();
} catch (Exception E) {
System.out.println("error with secondary model screening");
E.printStackTrace();
}
}
我不确定我是怎么读它的(现在我已将读数注释掉了) 任何线索?
答案 0 :(得分:2)
在这里使用File.separator是错误的。资源由URL标识,而不是文件名,URL只有正斜杠。
然后将该URL转换为文件是错误的。它可能是指向远程位置JAR内部的URL。
答案 1 :(得分:0)
您可以尝试以下代码:
URL url = getClass().getResource(/* resource name */);
final URL resolve = org.eclipse.core.runtime.FileLocator.resolve(url);
File file = new File( resolve.getPath());
编辑:哦,我刚刚看到,您将url
作为null
。请记住,getResource("resource name")
会在classpath
中查找资源。因此,resource name
应为/package/path/of/resourceName.extenstion
e.g。 /com/kjain/widget/identifier/views/view.jpg