2

我正在开发一个小程序,它应该为我完成烦人的复制和粘贴工作。所以我编写了一个代码,允许我插入正确的标题、数字等,然后将我的输入复制到正确位置的 4 个不同文件中。我准备了一些文件(.xml 和 .html),以便更轻松地进行编辑。我使用一个关键字,然后 .replaceAll("", "");

我的计划是将准备好的文件保留为资源,因此我可以将我的 .jar 拖到计算机上的任何位置,让程序从我的资源中生成新文件,并编辑与我的 .jar 位于同一目录中的文件。

好的,所以每当我通过 eclipse 启动我的应用程序时,一切都很好。该程序使用我的模板根据我的输入创建新文件,并编辑我选择要编辑的现有文件。但是,当我将所有内容导出到 .jar 中时,程序会在某个点停止,而不会出现错误或类似情况。

jarpath = getClass().getProtectionDomain().getCodeSource()
            .getLocation().getPath().substring(1);
//substring removes a / 

jarpathparent = jarpath.replace("alpha.jar", "");
// replacing with "" to get the only the directory where the .jar is.


public void generate(String s) throws IOException {
    String path = "", content = "";
    File file = null, outputfile = null;
    switch (s) {
    case "index":
        Dialog.info("", "1");
        path = getClass().getResource("index.html").toString()
                    .replace("file:/", ""); 
        Dialog.info("", "2");
        file = new File(path);
        Dialog.info("", "3");
        outputfile = new File(jarpathparent + "/index.html");
        Dialog.info("", "4");
        content = FileUtils.readFileToString(file);
        Dialog.info("", "5");
        content = content.replaceAll("XforTitle", title);
        Dialog.info("", "6");
        FileUtils.writeStringToFile(outputfile, content);
        Dialog.info("", "7");
        break;
    case "index2":
                   .
                   .
                   .

我使用了我创建的一个小对话框类来发现程序停止的位置。第四个对话框是弹出的最后一个对话框,所以问题似乎如此

 content = FileUtils.readFileToString(file);

我不知道到底出了什么问题,但也许是因为我使用 apache-commons-io (FileUtils) 或类似的东西?

也许还有一个包含整个代码的 pastebin 链接: http ://pastebin.com/Px7SygYu (图像标签和 .wav 仅供娱乐。)

__ _ __ _ __ _ __编辑_ __ _ __ _ __ _ __ _ __ _

好的,我现在可以加载资源内容

通过使用

InputStream input = getClass().getResourceAsStream("/classpath/to/my/file");

和来自的代码片段

http://www.mkyong.com/java/how-to-convert-inputstream-to-string-in-java/

所以我现在将文件的内容作为字符串,并想将其写入一个新文件(在我放置 .jar 的目录中)

InputStream input = getClass().getResourceAsStream("index.html");
        content = getStringFromInputStream(input);
        Dialog.info("", "2");
        outputfile = new File(jarpathparent + "index.html");
        Dialog.info("", "3");
        content = content.replaceAll("XforTitle", title);
        Dialog.info("", "4");
        Dialog.info("", outputfile.getPath());
        try {
            FileUtils.writeStringToFile(outputfile, content);
        } catch (Exception e) {
            Dialog.vielText("", e.toString());
        }
        Dialog.info("", "5");

所以它现在在 FileUtils.writeStringToFile(...); 但我没有检测到我的 try catch 中应该捕获的异常对话框。我检查了输出路径,正如您在代码中看到的那样,它似乎没问题。关于如何修复,甚至如何将我的字符串(包含 .html 模板)写入文件的任何其他想法?

4

1 回答 1

0

在一个罐子里,jarpath通孔getCodeSource()将包含

jar:PATH_OF_JAR!PATH_IN_JAR

PATH_OF_JAR 在哪里

file:/.... .jar

使用 Java 7,您可以使用Zip FileSystem进行基于文件的维护。

一般来说,更改运行代码是一种不好的方法,请重新考虑使用生成 jar 的构建管道。作为maven的粉丝,我经常遵循生成资源的这条道路。

于 2013-08-13T12:43:46.367 回答