锘??xml version="1.0" encoding="utf-8" standalone="yes"?>国产亚洲精品线观看动态图,国产精品亚洲精品爽爽,亚洲国产综合精品一区在线播放http://www.tkk7.com/abin/category/52997.htmlzh-cnTue, 04 Jun 2013 23:05:44 GMTTue, 04 Jun 2013 23:05:44 GMT60java鍚戝浘鐗囦笂鍐欏瓧,涓や釜鍥劇墖鍚堝茍鐨勬柟娉?http://www.tkk7.com/abin/archive/2013/06/04/400197.htmlabingabingTue, 04 Jun 2013 12:54:00 GMThttp://www.tkk7.com/abin/archive/2013/06/04/400197.htmlhttp://www.tkk7.com/abin/comments/400197.htmlhttp://www.tkk7.com/abin/archive/2013/06/04/400197.html#Feedback0http://www.tkk7.com/abin/comments/commentRss/400197.htmlhttp://www.tkk7.com/abin/services/trackbacks/400197.htmlpackage writeimg;
import javax.imageio.ImageIO;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.net.URL;


public class pic {

 private Font font = new Font("鍗庢枃褰╀簯", Font.PLAIN, 40);// 娣誨姞瀛椾綋鐨勫睘鎬ц緗?/p>

 private Graphics2D g = null;

 private int fontsize = 0;

 private int x = 0;

 private int y = 0;

 /**
  * 瀵煎叆鏈湴鍥劇墖鍒扮紦鍐插尯
  */
 public BufferedImage loadImageLocal(String imgName) {
  try {
   return ImageIO.read(new File(imgName));
  } catch (IOException e) {
   System.out.println(e.getMessage());
  }
  return null;
 }

 /**
  * 瀵煎叆緗戠粶鍥劇墖鍒扮紦鍐插尯
  */
 public BufferedImage loadImageUrl(String imgName) {
  try {
   URL url = new URL(imgName);
   return ImageIO.read(url);
  } catch (IOException e) {
   System.out.println(e.getMessage());
  }
  return null;
 }

 /**
  * 鐢熸垚鏂板浘鐗囧埌鏈湴
  */
 public void writeImageLocal(String newImage, BufferedImage img) {
  if (newImage != null && img != null) {
   try {
    File outputfile = new File(newImage);
    ImageIO.write(img, "jpg", outputfile);
   } catch (IOException e) {
    System.out.println(e.getMessage());
   }
  }
 }

 /**
  * 璁懼畾鏂囧瓧鐨勫瓧浣撶瓑
  */
 public void setFont(String fontStyle, int fontSize) {
  this.fontsize = fontSize;
  this.font = new Font(fontStyle, Font.PLAIN, fontSize);
 }

 /**
  * 淇敼鍥劇墖,榪斿洖淇敼鍚庣殑鍥劇墖緙撳啿鍖猴紙鍙緭鍑轟竴琛屾枃鏈級
  */
 public BufferedImage modifyImage(BufferedImage img, Object content, int x,
   int y) {

  try {
   int w = img.getWidth();
   int h = img.getHeight();
   g = img.createGraphics();
   g.setBackground(Color.WHITE);
   g.setColor(Color.orange);//璁劇疆瀛椾綋棰滆壊
   if (this.font != null)
    g.setFont(this.font);
   // 楠岃瘉杈撳嚭浣嶇疆鐨勭旱鍧愭爣鍜屾í鍧愭爣
   if (x >= h || y >= w) {
    this.x = h - this.fontsize + 2;
    this.y = w;
   } else {
    this.x = x;
    this.y = y;
   }
   if (content != null) {
    g.drawString(content.toString(), this.x, this.y);
   }
   g.dispose();
  } catch (Exception e) {
   System.out.println(e.getMessage());
  }

  return img;
 }

 /**
  * 淇敼鍥劇墖,榪斿洖淇敼鍚庣殑鍥劇墖緙撳啿鍖猴紙杈撳嚭澶氫釜鏂囨湰孌碉級 xory錛歵rue琛ㄧず灝嗗唴瀹瑰湪涓琛屼腑杈撳嚭錛沠alse琛ㄧず灝嗗唴瀹瑰琛岃緭鍑?br />  */
 public BufferedImage modifyImage(BufferedImage img, Object[] contentArr,
   int x, int y, boolean xory) {
  try {
   int w = img.getWidth();
   int h = img.getHeight();
   g = img.createGraphics();
   g.setBackground(Color.WHITE);
   g.setColor(Color.RED);
   if (this.font != null)
    g.setFont(this.font);
   // 楠岃瘉杈撳嚭浣嶇疆鐨勭旱鍧愭爣鍜屾í鍧愭爣
   if (x >= h || y >= w) {
    this.x = h - this.fontsize + 2;
    this.y = w;
   } else {
    this.x = x;
    this.y = y;
   }
   if (contentArr != null) {
    int arrlen = contentArr.length;
    if (xory) {
     for (int i = 0; i < arrlen; i++) {
      g.drawString(contentArr[i].toString(), this.x, this.y);
      this.x += contentArr[i].toString().length()
        * this.fontsize / 2 + 5;// 閲嶆柊璁$畻鏂囨湰杈撳嚭浣嶇疆
     }
    } else {
     for (int i = 0; i < arrlen; i++) {
      g.drawString(contentArr[i].toString(), this.x, this.y);
      this.y += this.fontsize + 2;// 閲嶆柊璁$畻鏂囨湰杈撳嚭浣嶇疆
     }
    }
   }
   g.dispose();
  } catch (Exception e) {
   System.out.println(e.getMessage());
  }

  return img;
 }

 /**
  * 淇敼鍥劇墖,榪斿洖淇敼鍚庣殑鍥劇墖緙撳啿鍖猴紙鍙緭鍑轟竴琛屾枃鏈級
  *
  * 鏃墮棿:2007-10-8
  *
  * @param img
  * @return
  */
 public BufferedImage modifyImageYe(BufferedImage img) {

  try {
   int w = img.getWidth();
   int h = img.getHeight();
   g = img.createGraphics();
   g.setBackground(Color.WHITE);
   g.setColor(Color.blue);//璁劇疆瀛椾綋棰滆壊
   if (this.font != null)
    g.setFont(this.font);
   g.drawString("   g.dispose();
  } catch (Exception e) {
   System.out.println(e.getMessage());
  }

  return img;
 }

 public BufferedImage modifyImagetogeter(BufferedImage b, BufferedImage d) {

  try {
   int w = b.getWidth();
   int h = b.getHeight();
   

   g = d.createGraphics();
   g.drawImage(b, 100, 10, w, h, null);
   g.dispose();
  } catch (Exception e) {
   System.out.println(e.getMessage());
  }

  return d;
 }

 public static void main(String[] args) {

  pic tt = new pic();

  BufferedImage d = tt.loadImageLocal("D:\\11.jpg");
//  BufferedImage b = tt
//    .loadImageLocal("E:\\鏂囦歡(word,excel,pdf,ppt.txt)\\zte-logo.png");
   tt.writeImageLocal("D:\\cc.jpg",tt.modifyImage(d,"鏇瑰師",90,90)
  //寰鍥劇墖涓婂啓鏂囦歡
   );

  //tt.writeImageLocal("D:\\cc.jpg", tt.modifyImagetogeter(b, d));
  //灝嗗寮犲浘鐗囧悎鍦ㄤ竴璧?br />  System.out.println("success");
 }

}







http://blog.csdn.net/caoyuan10036/article/details/7278735

abing 2013-06-04 20:54 鍙戣〃璇勮
]]>
myEclipse欏圭洰杞垚Eclipse寮鍙?/title><link>http://www.tkk7.com/abin/archive/2012/11/10/391137.html</link><dc:creator>abing</dc:creator><author>abing</author><pubDate>Sat, 10 Nov 2012 08:00:00 GMT</pubDate><guid>http://www.tkk7.com/abin/archive/2012/11/10/391137.html</guid><wfw:comment>http://www.tkk7.com/abin/comments/391137.html</wfw:comment><comments>http://www.tkk7.com/abin/archive/2012/11/10/391137.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.tkk7.com/abin/comments/commentRss/391137.html</wfw:commentRss><trackback:ping>http://www.tkk7.com/abin/services/trackbacks/391137.html</trackback:ping><description><![CDATA[<span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">鍏徃鎷垮埌鎵嬬殑欏圭洰寮鍙戝鉤鍙伴兘涓嶇粺涓銆傛湁鐨勬槸myEclipse寮鍙戠殑錛屾湁鐨勬槸Eclipse for J2EE寮鍙戠殑銆?span class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">榪欓噷璇翠竴縐嶆妸myEclipse欏圭洰杞垚Eclipse欏圭洰緇х畫寮鍙?span class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">1.  璇烽鍏堢‘淇濅綘鐨別clipse鏄痡avaee鐗堟湰鐨勶紝鎴栬呭凡緇忓畨瑁呯湅wtp鎻掍歡<span id="eaxxrgt" class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">2.  鐒跺悗淇敼eclipse宸ョ▼涓嬬殑.project鏂囦歡:<span id="dfjqfve" class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">3.鍦?lt;natures></natures>涓姞鍏?span class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">    <nature>org.eclipse.wst.common.project.facet.core.nature</nature><span id="uoeudgq" class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">    <nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature><span id="yrdjvvy" class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">    <nature>org.eclipse.jem.workbench.JavaEMFNature</nature><span id="wpsutrj" class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">4. 鍦?lt;buildSpec>< ildSpec>涓姞鍏?span class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">    <buildCommand><span id="lxhgxwv" class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">        <name>org.eclipse.wst.common.project.facet.core.builder</name><span id="xxsyadv" class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">        <arguments><span id="eadjlku" class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">        </arguments><span id="creznbl" class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">    </buildCommand><span id="lazytsn" class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">    <buildCommand><span id="grmpvyq" class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">        <name>org.eclipse.wst.validation.validationbuilder</name><span id="udfpdnm" class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">        <arguments><span id="wazqscm" class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">        </arguments> </span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">     < /buildCommand><span id="seznpzv" class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">5. 鍒鋒柊欏圭洰錛岄」鐩?>鍙沖嚮->Properties->Project Facets->Modify Project錛岄夋嫨Java鍜孌ynamic Web Module閰嶇疆Context Root 鍜孋ontent Directory 浠ュ強婧愮爜璺緞<span id="rojpgqh" class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">6. 絎?姝ユ病鏈夌殑璇濓紝鎵懼埌欏圭洰鐨?setting鐩綍錛屼慨鏀筼rg.eclipse.wst.common.component  閲岄潰鐨?span class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"><wb-module   deploy-name= "Demo "><span id="ccxhjio" class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"><wb-resource   deploy-path= "/ "   source-path= "/WebRoot "/><span id="cgmvxld" class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">榪欎袱涓嵆鍙紝deploy-name   涓哄伐紼嬪悕錛宻ource-   path= "/WebRoot "eclipse涓嬮粯璁や負WebContent淇敼涓篧ebRoot<span id="fupvfiw" class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">svn<span id="dlgfhkj" class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">http://subclipse.tigris.org/update_1.6.x<span id="xupzbwv" class="Apple-converted-space"> </span></span><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><br style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px" /><span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; display: inline !important; font: 13px/17px verdana, sans-serif; white-space: normal; orphans: 2; float: none; letter-spacing: normal; color: rgb(51,51,51); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px">-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxNewSize=256m -XX:MaxPermSize=256m</span> <img src ="http://www.tkk7.com/abin/aggbug/391137.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.tkk7.com/abin/" target="_blank">abing</a> 2012-11-10 16:00 <a href="http://www.tkk7.com/abin/archive/2012/11/10/391137.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://wwwdf221.com" target="_blank">四虎影视久久久免费观看</a>| <a href="http://jdvgo.com" target="_blank">久久久久亚洲精品男人的天堂</a>| <a href="http://963315.com" target="_blank">好男人资源在线WWW免费</a>| <a href="http://8mav958.com" target="_blank">亚洲综合激情五月丁香六月</a>| <a href="http://0359puju.com" target="_blank">亚洲精品成人片在线播放</a>| <a href="http://888-28.com" target="_blank">免费国产怡红院在线观看</a>| <a href="http://5ggy.com" target="_blank">免费99精品国产自在现线</a>| <a href="http://c2277.com" target="_blank">无码国产精品一区二区免费16 </a>| <a href="http://ghiearning.com" target="_blank">久久免费观看国产精品</a>| <a href="http://niu44.com" target="_blank">免费夜色污私人影院网站电影</a>| <a href="http://xianliwang.com" target="_blank">亚洲人成网站看在线播放</a>| <a href="http://klno1.com" target="_blank">亚洲欧洲日韩不卡</a>| <a href="http://fantoment.com" target="_blank">国产亚洲av片在线观看16女人 </a>| <a href="http://ldcatv.com" target="_blank">亚洲av日韩av永久在线观看</a>| <a href="http://dzhyyy.com" target="_blank">亚洲第一永久在线观看</a>| <a href="http://778002.com" target="_blank">亚洲AV人人澡人人爽人人夜夜</a>| <a href="http://yimintech.com" target="_blank">亚洲精品无码永久在线观看</a>| <a href="http://jiuse54.com" target="_blank">国产精品酒店视频免费看</a>| <a href="http://xdxsw.com" target="_blank">国产精品成人免费视频网站京东</a>| <a href="http://snsdtv.com" target="_blank">最近中文字幕大全免费视频 </a>| <a href="http://zengzeyu.com" target="_blank">亚洲国产精品无码专区</a>| <a href="http://bjsymsdwl.com" target="_blank">亚洲综合亚洲综合网成人</a>| <a href="http://25v8.com" target="_blank">成人伊人亚洲人综合网站222</a>| <a href="http://19520888.com" target="_blank">最近中文字幕mv手机免费高清</a>| <a href="http://wwby66636.com" target="_blank">亚洲精品国产免费</a>| <a href="http://55118885.com" target="_blank">99免费在线观看视频</a>| <a href="http://kimnote.com" target="_blank">免费国产午夜高清在线视频</a>| <a href="http://528676.com" target="_blank">91在线免费视频</a>| <a href="http://k5nn.com" target="_blank">国内永久免费crm系统z在线</a>| <a href="http://tzkanglong.com" target="_blank">久久久久女教师免费一区</a>| <a href="http://499k.com" target="_blank">中文字幕免费在线看电影大全</a>| <a href="http://gdsanhai.com" target="_blank">无码免费又爽又高潮喷水的视频 </a>| <a href="http://51ykz.com" target="_blank">久久国产精品免费一区二区三区</a>| <a href="http://phlinhng.com" target="_blank">日韩电影免费在线观看网址</a>| <a href="http://rdccc.com" target="_blank">看Aⅴ免费毛片手机播放</a>| <a href="http://gzmandala.com" target="_blank">国产偷国产偷亚洲高清在线</a>| <a href="http://715686.com" target="_blank">美女羞羞喷液视频免费</a>| <a href="http://kph37.com" target="_blank">色吊丝性永久免费看码</a>| <a href="http://6464k.com" target="_blank">男女一边桶一边摸一边脱视频免费 </a>| <a href="http://ai-xian.com" target="_blank">一区二区三区精品高清视频免费在线播放</a>| <a href="http://44168888.com" target="_blank">亚洲av永久无码一区二区三区</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>