Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2339244
  • 博文数量: 321
  • 博客积分: 3440
  • 博客等级: 中校
  • 技术积分: 2992
  • 用 户 组: 普通用户
  • 注册时间: 2007-05-24 09:08
个人简介

我就在这里

文章分类

全部博文(321)

文章存档

2015年(9)

2014年(84)

2013年(101)

2012年(25)

2011年(29)

2010年(21)

2009年(6)

2008年(23)

2007年(23)

分类: Java

2014-11-11 15:26:58

直接在build.properties视图下添加一行:

  1. javacDefaultEncoding.. = UTF-8

  1. source.. = src/
  2. output.. = bin/
  3. bin.includes = plugin.xml,\
  4.                META-INF/,\
  5.                .,\
  6.                icons/,\
  7.                product_lg.gif,\
  8.                splash.bmp,\
  9.                libs/commons-io-2.4.jar,\
  10.                libs/commons-lang3-3.3.2.jar
  11. source.. = src/
  12. src.excludes = icons/Thumbs.db
  13. src.includes = icons/,\
  14.                splash.bmp,\
  15.                product_lg.gif,\
  16.                src/log4j.properties
  17. javacDefaultEncoding.. = UTF-8
第二种方法

1.右键单击build.properites文件,"PDE tools" -->" Create Ant Build File" 
2.打开生成的build.xml文件,在javac中增加属性encoding="utf-8"

3.打开build.properties文件,浏览"Build"页面,勾选中"Custom Build"(网上的文章,把这一步放到了最前面。但实际上,默认是不勾的,也没build.xml文件,如果先勾上,是无法生成build.xml文件的)

 

  1. 找到如下标签:
  2. <!-- compile the source code -->
  3.         <javac destdir="${build.result.folder}/@dot" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bundleBootClasspath}" source="${bundleJavacSource}" target="${bundleJavacTarget}" >
  4.  
  5. 修改为:
  6. <!-- compile the source code -->
  7.         <javac destdir="${build.result.folder}/@dot" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bundleBootClasspath}" source="${bundleJavacSource}" target="${bundleJavacTarget}" encoding="UTF-8" >



阅读(1061) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~