久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

java對文件操作例子輔助類1

 sonny--李永勝 2007-03-30
 
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");
  }
 }
 
}

    本站是提供個(gè)人知識管理的網(wǎng)絡(luò)存儲空間,,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點(diǎn),。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點(diǎn)擊一鍵舉報(bào),。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多