锘??xml version="1.0" encoding="utf-8" standalone="yes"?>亚洲精品卡2卡3卡4卡5卡区,亚洲精品无码成人片久久,欧美亚洲国产SUVhttp://www.tkk7.com/humous-cl/zh-cnMon, 12 May 2025 12:13:49 GMTMon, 12 May 2025 12:13:49 GMT60鏄ㄥぉ鐨勪綔涓氾紙鐢繪澘錛?/title><link>http://www.tkk7.com/humous-cl/archive/2006/02/28/32893.html</link><dc:creator>椋樺拷鐫鐨?/dc:creator><author>椋樺拷鐫鐨?/author><pubDate>Tue, 28 Feb 2006 11:02:00 GMT</pubDate><guid>http://www.tkk7.com/humous-cl/archive/2006/02/28/32893.html</guid><wfw:comment>http://www.tkk7.com/humous-cl/comments/32893.html</wfw:comment><comments>http://www.tkk7.com/humous-cl/archive/2006/02/28/32893.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.tkk7.com/humous-cl/comments/commentRss/32893.html</wfw:commentRss><trackback:ping>http://www.tkk7.com/humous-cl/services/trackbacks/32893.html</trackback:ping><description><![CDATA[<P>import java.awt.*;<BR>import java.awt.event.*;<BR>import javax.swing.*;</P> <P>import java.awt.image.*;<BR>import com.sun.image.codec.jpeg.*;<BR>import java.io.*;<BR>public class mouse implements ActionListener, WindowListener, MouseMotionListener, MouseListener <BR>{<BR> Frame f;</P> <P> </P> <P> TextField t=new TextField();<BR> int j;<BR> int x,y;<BR> Graphics g,g_in;<BR> int x1,y1;<BR> BufferedImage i;</P> <P> Panel p1=new Panel(new GridLayout(2,3));</P> <P> Button b1=new Button("綰㈣壊");<BR> Button b2=new Button("榛勮壊");<BR> Button b3=new Button("钃濊壊");<BR> Button b4=new Button("緇胯壊");<BR> Button b5=new Button("鐭╁艦");<BR> Button b6=new Button("鍦嗗艦");<BR> <BR>  <BR> mouse()<BR> {<BR>  <BR>  <BR>  <BR> <BR>  t.setEnabled(false);<BR>  <BR>  f=new Frame("鐢誨浘錛?);<BR>  <BR>  p1.add(b1);<BR>  p1.add(b2);<BR>  p1.add(b3);<BR>  p1.add(b4);<BR>  p1.add(b5);<BR>  p1.add(b6);<BR>  <BR>  b1.addActionListener(this);<BR>  b2.addActionListener(this);<BR>  b3.addActionListener(this);<BR>  b4.addActionListener(this);<BR>  b5.addActionListener(this);<BR>  b6.addActionListener(this);<BR>  <BR>  f.add(t,BorderLayout.NORTH);<BR>  f.add(p1,BorderLayout.EAST);<BR>  <BR>  <BR>  f.setSize(400,400);<BR>  int w=(int)Toolkit.getDefaultToolkit().getScreenSize().getWidth();<BR>  int h=(int)Toolkit.getDefaultToolkit().getScreenSize().getHeight();<BR>  <BR>  f.setLocation((w-400)/2,(h-400)/2);<BR>  f.setBackground(Color.ORANGE);<BR>    <BR>  f.setResizable(false); <BR>  f.setVisible(true);<BR>  f.addWindowListener(this);<BR>  f.addMouseListener(this);<BR>  f.addMouseMotionListener(this);<BR>  this.getG();<BR>  <BR> } <BR> public void getG()<BR> {<BR>  f.addMouseListener(this); <BR>  this.g=f.getGraphics();<BR>  i=new BufferedImage(f.getWidth(),f.getHeight(),BufferedImage.TYPE_INT_RGB);<BR>  g_in=i.getGraphics();<BR>  <BR>  <BR>  g_in.setColor(Color.white);<BR>  g_in.fill3DRect(0,0,i.getWidth(),i.getHeight(),true);<BR> <BR> }<BR> <BR> public void actionPerformed(ActionEvent e)<BR> {<BR>  if(e.getSource()==b1)<BR>  {<BR>   g.setColor(Color.red);<BR>   g_in.setColor(Color.red);<BR>  }<BR>  else if(e.getSource()==b2)<BR>  {<BR>   g.setColor(Color.yellow);<BR>   g_in.setColor(Color.yellow);<BR>  }<BR>  else if(e.getSource()==b3)<BR>  {<BR>   g.setColor(Color.blue);<BR>   g_in.setColor(Color.blue);<BR>  }<BR>  else if(e.getSource()==b4)</P> <P>  {<BR>   g.setColor(Color.green);<BR>   g_in.setColor(Color.green);<BR>  }<BR>  else if(e.getSource()==b5)<BR>  {<BR>   j=0;<BR>  }<BR>  else if(e.getSource()==b6)<BR>  {<BR>   j=1;<BR>  }<BR> <BR>  <BR>  <BR>    <BR> }<BR> <BR> public static void main(String args[])<BR> {<BR>  mouse my=new mouse();<BR> }</P> <P> public void windowOpened(WindowEvent e) {<BR> <BR> }</P> <P> public void windowClosing(WindowEvent e) {<BR> try<BR>  {<BR>   ByteArrayOutputStream is=new ByteArrayOutputStream();//鍒涘緩涓涓瓧鑺傜被鍨嬫暟鎹殑鏁版嵁鍖?BR>   <BR>   JPEGImageEncoder coder=JPEGCodec.createJPEGEncoder(is);<BR>   //澹版槑姝ゆ暟鎹尯鍙兘淇濆瓨JPG鏍煎紡鐨勬暟鎹?BR>   <BR>   coder.encode(i);<BR>   //浠庡唴瀛榠鍥劇墖涓彁鍙朖PG鏍煎紡鏁版嵁錛屼繚瀛樺埌鏁版嵁鍖?BR>   <BR>   FileOutputStream fo=new FileOutputStream("a.jpg");<BR>   <BR>   byte[] b=is.toByteArray();//灝嗘暟鎹彁鍙栨垚瀛楄妭鏁扮粍<BR>   <BR>   fo.write(b);//灝嗘暟鎹啓鍏.jpg鏂囦歡涓?BR>   fo.close();//鍏抽棴鏂囦歡鐨勫啓鍏?BR>   <BR>   f.dispose();<BR>   <BR>   JOptionPane.showMessageDialog(null,"鍥劇墖宸蹭繚瀛樹負(fù)a.jpg錛岃瀵熺湅錛?); <BR>    <BR>  }catch(Exception el){}<BR> }</P> <P> public void windowClosed(WindowEvent e) {<BR> <BR> }</P> <P> public void windowIconified(WindowEvent e) {<BR> <BR> }</P> <P> public void windowDeiconified(WindowEvent e) {<BR> <BR> }</P> <P> public void windowActivated(WindowEvent e) {<BR>  <BR> }</P> <P> public void windowDeactivated(WindowEvent e) {<BR>  <BR> }</P> <P> public void mouseDragged(MouseEvent e) {<BR>  // TODO: Add your code here<BR> }</P> <P> </P> <P> public void mouseMoved(MouseEvent e) {<BR> t.setText("X:"+e.getX()+"Y:"+e.getY()); <BR>  <BR> }</P> <P> public void mouseClicked(MouseEvent e) {<BR>  // TODO: Add your code here<BR> }</P> <P> public void mousePressed(MouseEvent e) {<BR>  x=e.getX();y=e.getY();<BR> <BR> }</P> <P> public void mouseReleased(MouseEvent e) {<BR>  <BR>  x1=e.getX();y1=e.getY();<BR>   if (j==1)<BR>   {<BR>    if(x1>=x)<BR>    {<BR>   if(y1>=y)<BR>   {<BR>   g.fillOval(x,y,x1-x,y1-y);<BR>   g_in.fillOval(x,y,x1-x,y1-y);<BR>   }<BR>   else if(y1<y)<BR>   {<BR>   g.fillOval(x,y1,x1-x,y-y1);<BR>   g_in.fillOval(x,y1,x1-x,y-y1);<BR>   }<BR>  }<BR>  <BR>  else if(x1<x)<BR>  {<BR>   if(y1<y)<BR>   {<BR>   g_in.fillOval(x1,y1,x-x1,y-y1);<BR>   g.fillOval(x1,y1,x-x1,y-y1);<BR>   }<BR>   else if(y1>=y)<BR>   {<BR>    g.fillOval(x1,y,x-x1,y1-y);<BR>    g_in.fillOval(x1,y,x-x1,y1-y);<BR>   }<BR>  }}<BR>  else if(j==0)<BR>  {<BR>   if(x1>=x)<BR>    {<BR>   if(y1>=y)<BR>   {<BR>  g.fillRect(x,y,x1-x,y1-y);<BR>  g_in.fillRect(x,y,x1-x,y1-y);<BR>   }<BR>   else if(y1<y)<BR>   {<BR>  g.fillRect(x,y1,x1-x,y-y1);<BR>  g_in.fillRect(x,y1,x1-x,y-y1);<BR>   }<BR>  }<BR>  <BR>  else if(x1<x)<BR>  {<BR>   if(y1<y)<BR>   {<BR>   g.fillRect(x1,y1,x-x1,y-y1);<BR>   g_in.fillRect(x1,y1,x-x1,y-y1);<BR>   }<BR>   else if(y1>=y)<BR>   {<BR>    g.fillRect(x1,y,x-x1,y1-y);<BR>    g_in.fillRect(x1,y,x-x1,y1-y);<BR>   }<BR>  }<BR>  }<BR>  <BR>  <BR> <BR> }</P> <P> public void mouseEntered(MouseEvent e) {<BR>  <BR> }</P> <P> public void mouseExited(MouseEvent e) {<BR>  // TODO: Add your code here<BR> }<BR> <BR> <BR>  <BR> <BR> }</P><img src ="http://www.tkk7.com/humous-cl/aggbug/32893.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.tkk7.com/humous-cl/" target="_blank">椋樺拷鐫鐨?/a> 2006-02-28 19:02 <a href="http://www.tkk7.com/humous-cl/archive/2006/02/28/32893.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://54vpn.com" target="_blank">一级毛片免费视频网站</a>| <a href="http://fholaer.com" target="_blank">亚洲精品第一国产综合亚AV</a>| <a href="http://zdxxxx.com" target="_blank">久久不见久久见免费影院www日本</a>| <a href="http://bjyaao.com" target="_blank">日本一道综合久久aⅴ免费</a>| <a href="http://kppp4.com" target="_blank">亚洲人成色99999在线观看</a>| <a href="http://tqdrhj.com" target="_blank">成人毛片免费网站</a>| <a href="http://fsrongxing.com" target="_blank">亚洲欧洲日韩国产一区二区三区</a>| <a href="http://schygfz.com" target="_blank">免费不卡视频一卡二卡</a>| <a href="http://peipeixiu.com" target="_blank">亚洲成A人片在线播放器</a>| <a href="http://am33318.com" target="_blank">免费观看一级毛片</a>| <a href="http://nh-car.com" target="_blank">老司机午夜精品视频在线观看免费</a>| <a href="http://7778kk.com" target="_blank">青青青青青青久久久免费观看</a>| <a href="http://58f8.com" target="_blank">337p日本欧洲亚洲大胆人人</a>| <a href="http://sdbfgcjx.com" target="_blank">国产免费观看黄AV片</a>| <a href="http://www321fafa.com" target="_blank">黄色a级免费网站</a>| <a href="http://hs718.com" target="_blank">亚洲精品无码久久久久去q</a>| <a href="http://ljdst.com" target="_blank">免费国产成人午夜在线观看</a>| <a href="http://www2019rz.com" target="_blank">亚洲影院在线观看</a>| <a href="http://oakuu.com" target="_blank">免费无码不卡视频在线观看</a>| <a href="http://71caoxee.com" target="_blank">久久精品国产亚洲AV天海翼</a>| <a href="http://173ba.com" target="_blank">亚洲精品WWW久久久久久</a>| <a href="http://wua72.com" target="_blank">国产成人AV免费观看</a>| <a href="http://kanzhelu23.com" target="_blank">久久精品国产亚洲AV高清热</a>| <a href="http://hairdehf.com" target="_blank">成人免费午夜视频</a>| <a href="http://sds54.com" target="_blank">人妻仑乱A级毛片免费看</a>| <a href="http://xsdggzs.com" target="_blank">亚洲av最新在线网址</a>| <a href="http://ebuy668.com" target="_blank">国产桃色在线成免费视频 </a>| <a href="http://dqcjlb.com" target="_blank">亚洲色图综合网站</a>| <a href="http://hkschooltv.com" target="_blank">97人妻无码一区二区精品免费</a>| <a href="http://pyjxyey.com" target="_blank">亚洲女女女同性video</a>| <a href="http://nxeea.com" target="_blank">亚洲一区二区三区无码影院</a>| <a href="http://zfzz008.com" target="_blank">免费看又黄又无码的网站</a>| <a href="http://8k91.com" target="_blank">亚洲熟妇自偷自拍另欧美</a>| <a href="http://kencery.com" target="_blank">亚洲?V无码成人精品区日韩</a>| <a href="http://xa69.com" target="_blank">无码国产精品一区二区免费vr </a>| <a href="http://xuanboart.com" target="_blank">亚洲人成电影网站国产精品</a>| <a href="http://44168888.com" target="_blank">秋霞人成在线观看免费视频</a>| <a href="http://bb9234.com" target="_blank">亚洲综合精品伊人久久</a>| <a href="http://12345ww.com" target="_blank">亚洲精品无码AV人在线播放</a>| <a href="http://meyume.com" target="_blank">成年大片免费视频</a>| <a href="http://222xx8.com" target="_blank">免费成人在线电影</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>