Tomcat项目后端如何修改前端文件
有的时候啊,做定制化的项目,可以这么干,好用就行,别的管他呢。
String path = Thread.currentThread().getContextClassLoader().getResource("").getPath().replace("WEB-INF/classes/", "js/");
path += "xxx.js";
File file = new File(path);
获取到文件,然后就可以操作了
写文件可以用这个方法
<dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.11.0</version> </dependency
org.apache.commons.io.FileUtils#write(java.io.File, java.lang.CharSequence, java.lang.String)
比如:FileUtils.write(file, content, "utf-8");
原创文章,欢迎转载,转载请注明出处!
把每一件简单的事情做好,就是不简单;把每一件平凡的事情做好,就是不平凡!相信自己,创造奇迹~~