我目前有一个spring boot web应用程序。每次刷新Web应用程序时,应用程序都会写入文件。在本地我可以看到根路径目录中的文件。但是当我将.jar文件上传到云代工厂时,我怎样才能获得那些正在编写的文件?
脚本代码段写入文件
try{
Date date = new Date();
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH-mm-ss");
File file = new File(dateFormat.format(date) + "data.txt");
BufferedWriter out = new BufferedWriter(new FileWriter(file));
out.write("Some Data is being written");
out.close;
}
我能够在我的根文件夹中找到data.txt。但是,在将应用程序打包到jar后,如何将其推送到云代工厂,我怎样才能获得这些文件。
Cf push命令
-cf push testapp -p target/webapp.jar
答案 0 :(得分:0)
答案 1 :(得分:0)
尝试一下:
const str = 'hello my username is Text#1234.';
console.log(str.match(/\w+#\d{4}/i));
,然后:
cf ssh-code
谢谢
邯郸