读写文件到某路径并设置编码

//文件名,要写入的文本
public  void writeToFile(String filename,String text) {
         String path = CjfwzAction.class.getClassLoader().getResource("/").getPath();
         path = path.replace("/WEB-INF/classes", "");

          String logUrl =  path+"js";
         // String logUrl=ServletActionContext.getRequest().getSession().getServletContext().getRealPath("/js");
              File f=new File(logUrl);
              
            if (!f.exists()) {
                f.mkdirs();
            }
            BufferedWriter bufferedWriter = null;
            try {
                bufferedWriter = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(new File(logUrl+"/"+filename)), "utf-8"));
                bufferedWriter.write(text);
                bufferedWriter.newLine();
            } catch (FileNotFoundException ex) {
            ex.printStackTrace();
            } catch (IOException ex) {
            ex.printStackTrace();
            } finally {
            //Close the BufferedWriter
            try {
            if (bufferedWriter != null) {
            bufferedWriter.flush();
            bufferedWriter.close();
            }
            } catch (IOException ex) {
            ex.printStackTrace();
            }
            }
    }

读文件:
public void readJsonArea(){
        long start = System.currentTimeMillis();
        try {
            String path = FrontCache.class.getResource("/").getPath();
            path = path.replace("%20", " ");
            File file = new File(path + "__area.json");            
            List<String> list = FileUtils.readLines(file, "utf-8");            
            SystemManager.areaMap = JSON.parseObject(list.get(0),new TypeReference<Map<String,Area>>(){});
        } catch (IOException e) {
            e.printStackTrace();
        }        
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值