js构建器文件未找到异常

发布于 2024-11-25 03:12:54 字数 838 浏览 1 评论 0原文

我尝试运行 JSBuilder 脚本(*.bat 文件):

"java.exe" -jar JSBuilder2.jar --projectFile "script_name.jsb2" --homeDir "C:\Users\Tomasz\Desktop" --verbose

在 script_name.jsb2 中我得到:

{
    "projectName": "Name",
    "deployDir":   "\\Name\\Deploy",
    "licenseText": "licence",
    "pkgs": [{
        "name":    "Name",
        "file":    "Name.js",
        "isDebug": true,
        "fileIncludes": [ {
            "text":  "file1.js",
            "path":  "\\Name\\"
        },{
            "text":  "file2.js",
            "path":  "\\Name\\"
        }]
    }],
    "resources":   []
}

并且我得到错误:

java.io.FileNotFoundException: null\Name\file1.js

我找不到 null 是如何来自的?文件和文件夹(homeDir)现有,-这是Windows 7,在不同的(XP)类似脚本上没有这样的问题...

我缺少什么?

I try to run JSBuilder script (*.bat file):

"java.exe" -jar JSBuilder2.jar --projectFile "script_name.jsb2" --homeDir "C:\Users\Tomasz\Desktop" --verbose

in script_name.jsb2 I got:

{
    "projectName": "Name",
    "deployDir":   "\\Name\\Deploy",
    "licenseText": "licence",
    "pkgs": [{
        "name":    "Name",
        "file":    "Name.js",
        "isDebug": true,
        "fileIncludes": [ {
            "text":  "file1.js",
            "path":  "\\Name\\"
        },{
            "text":  "file2.js",
            "path":  "\\Name\\"
        }]
    }],
    "resources":   []
}

and I got error:

java.io.FileNotFoundException: null\Name\file1.js

I can not find how null is coming from ? files and folders (homeDir) existing, - this is Windows 7, on different one (XP) similar script has no such problems...

What I am missing ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千仐 2024-12-02 03:12:55

在 *.bat 文件参数 --projectFile 中,应提供完整路径,如 c:\.... ,这会有所不同

In *.bat file parameter --projectFile should be provided with full path like c:\.... it make the difference

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文