51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 1378|回复: 0
打印 上一主题 下一主题

[原创] myeclipse7.5汉化出问题

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2010-3-7 23:22:54 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
import java.io.File;
import java.util.ArrayList;
import java.util.List;
public class CreatePluginsConfig {

public CreatePluginsConfig() {
}

public void print(String path) {
  List list = getFileList(path);
  if (list == null) {
   return;
  }

  int length = list.size();
  for (int i = 0; i < length; i++) {
   String result = "";
   String thePath = getFormatPath(getString(list.get(i)));
   File file = new File(thePath);
   if (file.isDirectory()) {
    String fileName = file.getName();
    if (fileName.indexOf("_") < 0) {
     print(thePath);
     continue;
    }
    String[] filenames = fileName.split("_");
    String filename1 = filenames[0];
    String filename2 = filenames[1];
    result = filename1 + "," + filename2 + ",file:/" + path + "\\"
      + fileName + "\\,4,false";
    System.out.println(result);
   } else if (file.isFile()) {
    String fileName = file.getName();
    if (fileName.indexOf("_") < 0) {
     continue;
    }
    int last = fileName.lastIndexOf("_");// 最后一个下划线的位置
    String filename1 = fileName.substring(0, last);
    String filename2 = fileName.substring(last + 1, fileName
      .length() - 4);
    result = filename1 + "," + filename2 + ",file:/" + path + "\\"
      + fileName + ",4,false";
    System.out.println(result);
   }

  }
}

public List getFileList(String path) {
  path = getFormatPath(path);
  path = path + "/";
  File filePath = new File(path);
  if (!filePath.isDirectory()) {
   return null;
  }
  String[] filelist = filePath.list();
  List filelistFilter = new ArrayList();

  for (int i = 0; i < filelist.length; i++) {
   String tempfilename = getFormatPath(path + filelist);
   filelistFilter.add(tempfilename);
  }
  return filelistFilter;
}

public String getString(Object object) {
  if (object == null) {
   return "";
  }
  return String.valueOf(object);
}

public String getFormatPath(String path) {
  path = path.replaceAll("\\\\", "/");
  path = path.replaceAll("//", "/");
  return path;
}

public static void main(String[] args) {
  // 插件文件所在目录designer下的目录结构是eclipse/features and plugins的形式
  String plugin = "C:\\Program Files\\Genuitec\\MyEclipse 7.5\\language\\plugins";
  new CreatePluginsConfig().print(plugin);
}
}
在运行这段代码是老是出这现在这个问题,怎么解决
ArrayList is a raw type. References to generic type ArrayList<E> should be parameterize
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-11-18 17:42 , Processed in 0.063604 second(s), 25 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

快速回复 返回顶部 返回列表