mac与windows读取文件路径不同
Posted zzs7758
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mac与windows读取文件路径不同相关的知识,希望对你有一定的参考价值。
mac:
generatorConfig_vm = MybatisGeneratorUtil.class.getResource(generatorConfig_vm).getPath()
windows:
generatorConfig_vm = MybatisGeneratorUtil.class.getResource(generatorConfig_vm).getPath().replaceFirst("/", "");
以上是关于mac与windows读取文件路径不同的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 MAC OS MATLAB 读取在 windows MATLAB 中创建的 .mat 文件
使用标准 C 库将文件读取到内存 - Windows 过早识别 EOF 但适用于 Mac、Linux