是否有任何文件夹相当于/META-INF/services/
GWT 项目中的动态 Web 项目文件夹?我需要它在我的类加载器中添加一个类路径。
单独使用以下示例时,它可以完美运行:
package flyingsaucerpdf;
import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStream;
import org.xhtmlrenderer.pdf.ITextRenderer;
public class PDFMaker {
public static void main(String[] args) throws Exception {
new PDFMaker().go();
}
public void go() throws Exception {
String inputFile = "sample.html";
String url = new File(inputFile).toURI().toURL().toString();
String outputFile = "firstdoc.pdf";
OutputStream os = new FileOutputStream(outputFile);
ITextRenderer renderer = new ITextRenderer();
renderer.setDocument(url);
renderer.layout();
renderer.createPDF(os);
os.close();
}
}
我认为这与这里的问题相同,但我使用的是 GWT 项目而不是动态 Web 项目。