锘??xml version="1.0" encoding="utf-8" standalone="yes"?>亚洲a级成人片在线观看,国产精品亚洲一区二区三区久久 ,亚洲成在人线avhttp://www.tkk7.com/yegucheng/archive/2007/10/26/156032.htmlyeguchengyeguchengFri, 26 Oct 2007 02:01:00 GMThttp://www.tkk7.com/yegucheng/archive/2007/10/26/156032.htmlhttp://www.tkk7.com/yegucheng/comments/156032.htmlhttp://www.tkk7.com/yegucheng/archive/2007/10/26/156032.html#Feedback3http://www.tkk7.com/yegucheng/comments/commentRss/156032.htmlhttp://www.tkk7.com/yegucheng/services/trackbacks/156032.html絎旇呯殑鍦烘櫙鏄繖鏍風殑錛岀瑪鑰呬嬌鐢╟ode smith浣滀負浠g爜鐢熸垚宸ュ叿錛屽茍鍦‥clipse涓仛鎻掍歡寮鍙戯紝code smith澶╃敓
瀵笹B鐨勬敮鎸佹瘮杈冨急錛屽彧鑳界敓鎴怳TF-8緙栫爜錛岃繖鍦‥clipse寮鍙戠殑榪囩▼涓笉浼氬瓨鍦ㄩ棶棰橈紝浣嗘槸鍦ㄤ嬌鐢‥clipse鐨勫鍑?br /> 鍔熻兘鏃訛紝Eclipse搴曞眰浣跨敤ANT鐨勬墽琛屾柟寮忥紝ANT鐨勯粯璁ゅ瓧絎﹂泦榛樿浣跨敤褰撳墠緋葷粺鐨勫瓧絎﹂泦錛岃繖鏃跺湪緙栬瘧瀵煎嚭鐨勬椂鍊欙紝
浼氬嚭鐜板瓧絎︽棤娉曡瘑鍒殑闂錛屽鑷村鍑烘垨鑰呮墦鍖呭け璐ャ?br />  涓縐嶆柟寮忓彲浠ユ敼鍙楨clipse宸ョ▼鐨勯粯璁ゅ瓧絎﹂泦錛屼互鍙婅嚜鍔ㄧ敓鎴愮殑ant閰嶇疆鏂囦歡涓瓧絎﹂泦鐨勯厤緗紝榪欏浜庡崟涓伐紼嬫槸鏈?br /> 鏁堢殑錛屼絾澶勭悊宸ョ▼闂翠緷璧栨椂錛岃渚濊禆鐨勫伐紼嬪悓鏍蜂細鍑虹幇瀛楃闆嗛棶棰橈紝鍗充嬌琚緷璧栧伐紼嬭瀹歛nt鐨勫瓧絎﹂泦銆?br />  鍙︿竴縐嶆柟寮忥紝鏄墜宸ヨ漿鎹紝璁睻TF-8鐨勫瓧絎﹂泦杞崲涓篏BK鐨勶紝寰蔣鐨勭綉绔欐彁渚涗簡涓涓壒閲忚漿鎹㈠伐鍏鳳紝浣嗘槸鍦ㄨ漿鎹箣鍚庯紝
鏂囨。鐨勬渶鍓嶉潰榪樹細鏈夊彲鑳藉瓨鍦ㄥ浜庡瓧絎︼紝騫跺鑷碼nt鎵撳寘澶辮觸
 鏈鍚庯紝娌″姙娉曡嚜宸卞啓浜嗕竴涓瓧絎﹂泦杞崲宸ュ叿錛屽洜涓烘槸鑷繁鐢紝鎵浠ュ鐢ㄥ氨琛岋紝涓嬮潰鏄漿鎹㈤儴鍒嗙殑浠g爜錛屽疄鐜癠TF8鍒?br /> GBK鐨勮漿鎹紝鍏朵粬杞崲鍙互瀵逛唬鐮佺◢浣滀慨鏀廣?/p>

 
import org.apache.commons.lang.ArrayUtils;

public class EncodeRepairTool {
 public static final byte[] bPre = "EFBBBF".getBytes();
 private int i = 0;

 /**
  * @param args
  */
 public static void main(String[] args) {  
  String path = "D:\\eclipse-dev-3.3\\workspace";
  File file = new File(path);
  EncodeRepairTool scanner = new EncodeRepairTool();
  scanner.scanFolder(file);

 }

 

 public void scanFolder(File file) {
  if (file.isDirectory()) {
   File[] files = file.listFiles();
   for (int i = 0; i < files.length; i++) {
    scanFolder(files[i]);
   }
  } else if (file.getName().endsWith(".java")) {
   removePreCode(file);
  }
 }

 private void removePreCode(File file) {
  try {
   FileInputStream fis = new FileInputStream(file);
   int size = fis.available();
   if (size < 24) {
    return;
   }
   i ++ ;
   byte[] bs = new byte[size];
   fis.read(bs);
   byte[] tbs = ArrayUtils.subarray(bs, 0, 3);
   byte[] tbs1 = new byte[] { new Integer(0xEF).byteValue(),
     new Integer(0xBB).byteValue(),
     new Integer(0xBF).byteValue() };
   boolean bol = false;
   if (tbs[0] == tbs1[0] && tbs[1] == tbs1[1] && tbs[2] == tbs1[2]) {
    bol = true;
   }
   fis.close();
   if (!bol) {
    System.out.println("  " + i + " : " + file.getName());
    tbs = bs;
   }
   else {
    System.out.println("**" + i + " : " + file.getName());
    tbs = ArrayUtils.subarray(bs, 3, size);
    
   }   
   InputStreamReader reader = new InputStreamReader(new ByteArrayInputStream(tbs), "UTF-8");
   BufferedReader br = new BufferedReader(reader);
   StringBuffer buffer = new StringBuffer();
   String s = br.readLine();
   while (s != null) {
    buffer.append(s);
    buffer.append("\n");
    s =  br.readLine();
   }
   reader.close();
   byte[] nbs = buffer.toString().getBytes("GBK");   
   FileOutputStream fos = new FileOutputStream(file);
   fos.write(nbs);
   fos.flush();
   fos.close();
   
  } catch (FileNotFoundException e) {
   // TODO 鑷姩鐢熸垚 catch 鍧?br />    e.printStackTrace();
  } catch (IOException e) {
   // TODO 鑷姩鐢熸垚 catch 鍧?br />    e.printStackTrace();
  }

 }

}



yegucheng 2007-10-26 10:01 鍙戣〃璇勮
]]>
鍦ㄤ嬌鐢═AB鍨嬬殑灞炴ч〉鏃訛紝璁懼畾Section鏍囬鐨勬柟娉?/title><link>http://www.tkk7.com/yegucheng/archive/2007/04/02/107992.html</link><dc:creator>yegucheng</dc:creator><author>yegucheng</author><pubDate>Mon, 02 Apr 2007 07:36:00 GMT</pubDate><guid>http://www.tkk7.com/yegucheng/archive/2007/04/02/107992.html</guid><wfw:comment>http://www.tkk7.com/yegucheng/comments/107992.html</wfw:comment><comments>http://www.tkk7.com/yegucheng/archive/2007/04/02/107992.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.tkk7.com/yegucheng/comments/commentRss/107992.html</wfw:commentRss><trackback:ping>http://www.tkk7.com/yegucheng/services/trackbacks/107992.html</trackback:ping><description><![CDATA[     鎽樿: 鍦ㄤ嬌鐢═AB鍨嬬殑灞炴ч〉鏃訛紝璁懼畾Section鏍囬鐨勬柟娉?nbsp; <a href='http://www.tkk7.com/yegucheng/archive/2007/04/02/107992.html'>闃呰鍏ㄦ枃</a><img src ="http://www.tkk7.com/yegucheng/aggbug/107992.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.tkk7.com/yegucheng/" target="_blank">yegucheng</a> 2007-04-02 15:36 <a href="http://www.tkk7.com/yegucheng/archive/2007/04/02/107992.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>EMF妯″瀷瑙f瀽鐨勭瓥鐣ュ垎鏋?/title><link>http://www.tkk7.com/yegucheng/archive/2007/03/07/102372.html</link><dc:creator>yegucheng</dc:creator><author>yegucheng</author><pubDate>Wed, 07 Mar 2007 05:08:00 GMT</pubDate><guid>http://www.tkk7.com/yegucheng/archive/2007/03/07/102372.html</guid><wfw:comment>http://www.tkk7.com/yegucheng/comments/102372.html</wfw:comment><comments>http://www.tkk7.com/yegucheng/archive/2007/03/07/102372.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.tkk7.com/yegucheng/comments/commentRss/102372.html</wfw:commentRss><trackback:ping>http://www.tkk7.com/yegucheng/services/trackbacks/102372.html</trackback:ping><description><![CDATA[ <p>浠婂ぉ鐪嬪埌涓ょ浣跨敤EMF瑙f瀽.xml涓篍MF妯″瀷鐨勭瓥鐣ワ細<br />涓縐嶆槸閫氳繃濡備笅浠g爜錛?/p> <div style="BORDER-RIGHT: #cccccc 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #cccccc 1px solid; PADDING-LEFT: 4px; FONT-SIZE: 13px; PADDING-BOTTOM: 4px; BORDER-LEFT: #cccccc 1px solid; WIDTH: 98%; WORD-BREAK: break-all; PADDING-TOP: 4px; BORDER-BOTTOM: #cccccc 1px solid; BACKGROUND-COLOR: #eeeeee"> <img src="http://www.tkk7.com/images/OutliningIndicators/None.gif" align="top" /> <span style="COLOR: #000000">IFileEditorInput聽modelFile聽</span> <span style="COLOR: #000000">=</span> <span style="COLOR: #000000">聽(IFileEditorInput)getEditorInput();<br /><img src="http://www.tkk7.com/images/OutliningIndicators/None.gif" align="top" />URI聽resourceURI聽</span> <span style="COLOR: #000000">=</span> <span style="COLOR: #000000">聽URI.createPlatformResourceURI(modelFile.getFile().getFullPath().toString());;<br /><img src="http://www.tkk7.com/images/OutliningIndicators/None.gif" align="top" /></span> <span id="Codehighlighter1_227_363_Open_Text"> <span style="COLOR: #000000">resource聽</span> <span style="COLOR: #000000">=</span> <span style="COLOR: #000000">聽editingDomain.getResourceSet().getResource(resourceURI,聽</span> <span style="COLOR: #0000ff">true</span> <span style="COLOR: #000000">);</span> </span> </div>涓婇潰榪欑鏂瑰紡浼氬紩鐢ㄤ竴涓狝dapterFactoryEditingDomain綾伙紝浣嗘垜浠熀浜庢ā鍨嬪仛緙栬緫鍣ㄦ椂錛屾湁鏃跺茍涓嶉渶瑕佺敤榪欎釜綾伙紝渚嬪GEF錛屽畠鍏鋒湁鑷韓鐨凟ditorDomain銆?br /><br />鍙﹀涓縐嶆柟寮忔槸浣跨敤EMF妯″瀷鑷姩鐢熸垚鐨凱rocess,璇ョ被涓鑸湪妯″瀷鐨刄til鍖呬笅闈紝寮曠敤浠g爜濡備笅錛?br /><div style="BORDER-RIGHT: #cccccc 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #cccccc 1px solid; PADDING-LEFT: 4px; FONT-SIZE: 13px; PADDING-BOTTOM: 4px; BORDER-LEFT: #cccccc 1px solid; WIDTH: 98%; WORD-BREAK: break-all; PADDING-TOP: 4px; BORDER-BOTTOM: #cccccc 1px solid; BACKGROUND-COLOR: #eeeeee"><img src="http://www.tkk7.com/images/OutliningIndicators/None.gif" align="top" /><span style="COLOR: #000000">IFileEditorInput聽modelFile聽</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">聽(IFileEditorInput)getEditorInput();聽聽聽聽聽聽聽聽<br /><img src="http://www.tkk7.com/images/OutliningIndicators/None.gif" align="top" />XMLProcessor聽processor聽</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">聽聽</span><span style="COLOR: #0000ff">new</span><span style="COLOR: #000000">聽DesignXMLProcessor();聽聽聽聽聽聽聽聽聽聽聽聽<br /><img src="http://www.tkk7.com/images/OutliningIndicators/None.gif" align="top" />聽resource聽</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">聽processor.load(</span><span style="COLOR: #0000ff">new</span><span style="COLOR: #000000">聽InputSource(</span><span style="COLOR: #0000ff">new</span><span style="COLOR: #000000">聽InputStreamReader(modelFile.getFile().getContents(),聽</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">GBK</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">)),聽</span><span style="COLOR: #0000ff">null</span><span style="COLOR: #000000">);<br /><img src="http://www.tkk7.com/images/OutliningIndicators/None.gif" align="top" />聽聽聽聽聽聽聽聽</span></div><br />鍏跺疄錛屽浜嶦MF鑰岃█錛屼笂闈袱縐嶈В閲婃柟寮忥紝褰掓牴鍒板簳閮介渶瑕丒MF鑾峰緱 涓氬姟妯″瀷鐩稿叧鐨勮В鏋愬櫒錛屽浜庣涓縐嶆柟寮忥紝EMF鏄浣曡幏鍙栧埌涓氬姟妯″瀷鐨勮В鏋愬櫒鍛紵涓昏鏄氳繃鎵╁睍鐨勬柟寮忥紝鎵╁睍瀹氫箟鍦ㄦā鍨嬬殑plugin.xml涓紝浠g爜鐗囨柇濡備笅鍥炬墍紺猴細<br /><div style="BORDER-RIGHT: #cccccc 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #cccccc 1px solid; PADDING-LEFT: 4px; FONT-SIZE: 13px; PADDING-BOTTOM: 4px; BORDER-LEFT: #cccccc 1px solid; WIDTH: 98%; WORD-BREAK: break-all; PADDING-TOP: 4px; BORDER-BOTTOM: #cccccc 1px solid; BACKGROUND-COLOR: #eeeeee"><img src="http://www.tkk7.com/images/OutliningIndicators/None.gif" align="top" /><span style="COLOR: #000000">聽聽</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">extension聽point</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">org.eclipse.emf.ecore.extension_parser</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">></span><span style="COLOR: #000000"><br /><img src="http://www.tkk7.com/images/OutliningIndicators/None.gif" align="top" />聽聽聽聽</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">parser聽<br /><img src="http://www.tkk7.com/images/OutliningIndicators/None.gif" align="top" />聽聽聽聽聽聽聽type</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">design</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">聽<br /><img src="http://www.tkk7.com/images/OutliningIndicators/None.gif" align="top" />聽聽聽聽聽聽聽</span><span style="COLOR: #0000ff">class</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">com.neusoft.report.design.util.DesignResourceFactoryImpl</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">聽</span><span style="COLOR: #000000">/></span><span style="COLOR: #000000"><br /><img src="http://www.tkk7.com/images/OutliningIndicators/None.gif" align="top" />聽聽</span><span style="COLOR: #000000"></</span><span style="COLOR: #000000">extension</span><span style="COLOR: #000000">></span></div><br />榪欐牱錛岃В鏋?xml鏂囦歡鏃訛紝EMF浠嶳esourceFactory娉ㄥ唽涓紝鏍規嵁鐩稿簲鐨則ype錛岃幏鍙栬В鏋愬櫒錛圖esignResourceFactoryImpl錛夛紝瀹屾垚瑙f瀽銆?img src ="http://www.tkk7.com/yegucheng/aggbug/102372.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.tkk7.com/yegucheng/" target="_blank">yegucheng</a> 2007-03-07 13:08 <a href="http://www.tkk7.com/yegucheng/archive/2007/03/07/102372.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://www.tkk7.com/" title="亚洲av成人片在线观看">亚洲av成人片在线观看</a> <div class="friend-links"> </div> </div> </footer> 主站蜘蛛池模板: <a href="http://zjlxblog.com" target="_blank">久9这里精品免费视频</a>| <a href="http://5d8f.com" target="_blank">日本中文字幕免费看</a>| <a href="http://pjwys.com" target="_blank">国产好大好硬好爽免费不卡</a>| <a href="http://www2019rz.com" target="_blank">亚洲人成影院在线观看</a>| <a href="http://25v8.com" target="_blank">深夜a级毛片免费无码</a>| <a href="http://caobi97.com" target="_blank">啊v在线免费观看</a>| <a href="http://sshc5.com" target="_blank">九九免费久久这里有精品23</a>| <a href="http://1880531.com" target="_blank">亚洲成a人一区二区三区</a>| <a href="http://szyujiaxing.com" target="_blank">人妻无码中文字幕免费视频蜜桃</a>| <a href="http://misiranim.com" target="_blank">亚洲成a人片在线播放</a>| <a href="http://kelingdq.com" target="_blank">xxxxx做受大片视频免费</a>| <a href="http://zjtuntex.com" target="_blank">亚洲国产精品福利片在线观看 </a>| <a href="http://wuiso.com" target="_blank">亚洲精品无播放器在线播放</a>| <a href="http://22nee.com" target="_blank">免费涩涩在线视频网</a>| <a href="http://chowngroup.com" target="_blank">国内成人精品亚洲日本语音 </a>| <a href="http://jufandev.com" target="_blank">91九色精品国产免费</a>| <a href="http://xiaomaomi8.com" target="_blank">tom影院亚洲国产一区二区</a>| <a href="http://qianmiu.com" target="_blank">精品国产免费观看</a>| <a href="http://445645.com" target="_blank">日本高清免费中文在线看</a>| <a href="http://6363388.com" target="_blank">亚洲国产成人高清在线观看</a>| <a href="http://sqmdjz.com" target="_blank">最近2018中文字幕免费视频</a>| <a href="http://46339cc.com" target="_blank">亚洲一区二区三区在线网站</a>| <a href="http://ri9999.com" target="_blank">国产在线a不卡免费视频</a>| <a href="http://kingleadsw.com" target="_blank">9久久免费国产精品特黄</a>| <a href="http://470577.com" target="_blank">久久青青草原亚洲av无码app </a>| <a href="http://cnlawedu.com" target="_blank">日本高清在线免费</a>| <a href="http://777mecom.com" target="_blank">亚洲精品无码av片</a>| <a href="http://alodaba.com" target="_blank">国产亚洲av片在线观看播放 </a>| <a href="http://misiranim.com" target="_blank">亚洲人成网www</a>| <a href="http://18eeuus.com" target="_blank">免费无码精品黄AV电影</a>| <a href="http://jpvv8.com" target="_blank">精品亚洲成a人在线观看</a>| <a href="http://by11gun.com" target="_blank">亚洲成AV人片在</a>| <a href="http://zgnyxx.com" target="_blank">大学生一级特黄的免费大片视频</a>| <a href="http://jufandev.com" target="_blank">四虎一区二区成人免费影院网址</a>| <a href="http://wwwwmmmm.com" target="_blank">亚洲人成在线播放网站岛国</a>| <a href="http://www-5453.com" target="_blank">最新中文字幕免费视频</a>| <a href="http://wyj4.com" target="_blank">三上悠亚在线观看免费</a>| <a href="http://meinvtaotu.com" target="_blank">亚洲 日韩经典 中文字幕</a>| <a href="http://blblkj.com" target="_blank">中文字幕亚洲激情</a>| <a href="http://dzhyyy.com" target="_blank">国产精品免费观看久久</a>| <a href="http://shelaoban.com" target="_blank">a毛片久久免费观看</a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body>