九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
java對(duì)文件操作例子輔助類1
 
package org.sonny.filemanager.util;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.io.UnsupportedEncodingException;
import java.util.ResourceBundle;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class FileProxy {

 /**
  * @param args
  */
 private ResourceBundle properties = null;
 File f = null;
 
 public FileProxy() {}
 
 public static boolean isFolder(String value){
  if(value.indexOf(".") > -1) {
   return false;
  }
  return true;
 }
 public String getValidPatch(String filepath, boolean isNeedNew) {
  loadProperties();
  String root = properties.getString("rootLeft");
  String separate = "/";
  if(filepath.indexOf("\\") > -1) {
   separate = "\\";
   root = properties.getString("rootRight");
  }
  String rpath = root + separate + filepath;
  if(isNeedNew) {
   File file = new File(rpath);
   if(!file.isDirectory()) file.mkdirs();
  }
  return rpath;
 }
 public String getSeparate(String path) {
  String separate = "/";
  if(path.indexOf("\\") > -1) {
   separate = "\\";
  }
  return separate;
 }
 public String getDirRoot() {
  return properties.getString("rootLeft");
 }
 public boolean isExist(String path) {
  String temp = getValidPatch(path, false);
  File file = new File(temp);
  if(!file.isDirectory()) return false;
  return true;
 }
 private void loadProperties() {
  if(properties == null) {
   properties = ResourceBundle.getBundle("cn.bizos.filemanager.resources.FileProperties");
  }
 }
 
}

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
Java 項(xiàng)目生成靜態(tài)頁(yè)面的代碼
Java操作文件、目錄
JAVA網(wǎng)站靜態(tài)化方法
回憶Java 之 文件讀寫及性能比較總結(jié)
java讀取TXT文件的方法
多文件合成一個(gè)文件工具類
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服