欢迎访问我的个人网站==》 jiashubing.cn

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");

 

原创文章,欢迎转载,转载请注明出处!

 

posted @ 2023-03-31 14:13  贾树丙  阅读(53)  评论(0编辑  收藏  举报