Java MAX_PATH 等效吗?

发布于 2024-12-12 17:41:02 字数 53 浏览 0 评论 0原文

Java 中是否有相当于 C 的 MAX_PATH 常量?一直在网上寻找答案,但找不到。谢谢

Is there an equivalent of C's MAX_PATH constant in Java? Been troving the web for an answer and can't find one. Thanks

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

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

发布评论

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

评论(1

奢望 2024-12-19 17:41:02

不,没有等效的东西(尤其对于小程序来说)。除非你想做JNI,否则你无法获取该信息。您可能达到的唯一限制是 String 最大长度限制(无论如何,这远远超出了任何操作系统所允许的长度)。

我假设要么会抛出异常,要么文件名(或路径)将被截断。这是一个相关问题:Does Java IO has a max file name length ?

No, there's no equivalent (especially for an applet). Unless you want to do JNI, you can't get that information. The only limit you may reach is the String max length limit (which is far beyond what any operating system would allow, anyway).

I assume either an exception would be thrown or the filename (or path) will be truncated. Here's a related question: Does Java IO have a maximum file name length?

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