Java开发网 Java开发网
注册 | 登录 | 帮助 | 搜索 | 排行榜 | 发帖统计  

您没有登录

» Java开发网 » Java SE 综合讨论区  

按打印兼容模式打印这个话题 打印话题    把这个话题寄给朋友 寄给朋友    该主题的所有更新都将Email到你的邮箱 订阅主题
flat modethreaded modego to previous topicgo to next topicgo to back
作者 关于JAVA(JDK1.4 微软JAVA 画的圆为何不同?)
wsfree





发贴: 6
积分: 0
于 2006-08-16 22:08 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list

import java.applet.*;
import java.awt.*;
public class GraphicsSampler extends Applet
{
Image i2=null;
Graphics g2=null;
int ww=0,hh=0;
public void init()
{
setBackground(Color.lightGray);
}
public void paint(Graphics g)
{
Rectangle r1=getBounds();
if (i2==null||ww!=r1.width ||hh!=r1.height)
{
if (g2!=null)
g2.dispose();
i2=createImage(r1.width,r1.height);
g2=i2.getGraphics();
}
g2.setColor(Color.cyan);
g2.fillArc(25, 10, 150, 80, 90, 350);
g2.setColor(Color.red);
g2.drawArc(25, 10, 150, 80, 90, 135);
g2.setColor(Color.red);
g2.drawArc(25,10,15,15,0,360);
g2.drawArc(20,5,5,5,0,360); //--------------------1
g.drawImage(i2,0,0,this);
g.setColor(Color.cyan);
g.fillArc(25, 100, 150, 80, 90, 350);
g.setColor(Color.red);
g.drawArc(25, 100, 150, 80, 90, 135);
g.setColor(Color.red);
g.drawArc(25,100,15,15,0,360);
g.drawArc(20,95,5,5,0,360); //--------------------2
}
}


在JDK1.4中第1和第2所画的圆为何不同??
在微软JAVA却正常。Clown


why edited on 2006-08-28 01:47


话题树型展开
人气 标题 作者 字数 发贴时间
6650 关于JAVA(JDK1.4 微软JAVA 画的圆为何不同?) wsfree 1298 2006-08-16 22:08
4893 Re:关于JAVA why 6 2006-08-17 01:51
5551 Re:关于JAVA wsfree 18 2006-08-17 15:01

flat modethreaded modego to previous topicgo to next topicgo to back
  已读帖子
  新的帖子
  被删除的帖子
Jump to the top of page

   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923