我在本地主机中有 weblogic。我的 Web 应用程序保存了一些 rdf:
String name = UUID.randomUUID().toString();
FileOutputStream fop = null;
try {
fop = new FileOutputStream(name);
} catch (FileNotFoundException e) {
}
model.write(fop);
当我转到保存此文件的 url 时,出现此错误:
XML Parsing Error: no element found
Location: http://url/0260fcff-b53d-4d18-8fb0-fb31f6a6ff1a.rdf
Line Number 1, Column 1:
在我的电脑哪里可以找到这个文件?
PS我尝试只用java应用程序保存这个文件,它可以工作,所以rdf应该没问题。