我在编写java applet时遇到问题并将其与html文件链接
java applet是关于绘制饼图3值的销售,会员和添加。 java applet的代码:
import java.awt.*;
import javax.swing.*;
import javax.swing.border.*;
/**
* Class AppDemo - write a description of the class here
*
* @author (your name)
* @version (a version number)
*/
public class AppDemo extends JApplet
{
public void init()
{
Container appC = getContentPane();
MyPanel myp = new MyPanel() ;
myp.setBorder(new EtchedBorder() ) ;
myp.setBackground(Color.red);
appC.add(myp);
}
}
class MyPanel extends JPanel {
public void paint(Graphics g)
{
g.setFont( new Font("Verdana", Font.BOLD , 18) ) ;
g.setColor(Color.green);
g.drawString("HELLO WORLD", 20, 20);
g.fillArc( 20, 50, 200, 200 , 0 , 90 ) ;
g.setColor( new Color(255, 128, 64) ) ;
g.fillArc( 20, 50, 200, 200 , 90 , 40 ) ;
g.setColor( Color.pink ) ;
g.fillArc( 20, 50, 200, 200 , 130 , 230 ) ;
}
}
现在我想要取出第一个切片..将以下内容添加到fillArc方法的第一个参数(x坐标)
(int) Math.round(Math.cos(put_first_value_here/360.0*Math.PI)*20)
将以下内容添加到fillArc方法的第二个参数(y坐标)
-((int) Math.round(Math.sin(put_first_value_here/360.0*Math.PI)*20))
其中first_value是第一个弧的角度
和html文件:
<APPLET CODE="AppDemo.class" CODEBASE="." WIDTH=500 HEIGHT=500>
<param name=adds value=1100 />
<param name=memberships value=300/>
<param name=sales value=1000/>
</APPLET>
html文件的结尾
他们告诉我使用构造函数来获取值,但我不知道该怎么做,我不明白为什么我应该使用它
提前致谢
答案 0 :(得分:1)
如果我理解正确,您希望从applet中访问<param.../>
标记中包含的值。 applet可以通过getParameter(String)
方法访问这些参数。您通常在init()
方法中访问这些值:
public class AppDemo extends JApplet
{
public void init()
{
String adds = getParameter("adds");
String memberships = getParameter("memberships");
String sales = getParameter("sales");
// The rest of your init() code...
}
}
答案 1 :(得分:0)
谷歌的教程..例如http://www.dgp.toronto.edu/~mjmcguff/learn/java/
阅读,理解,适应,测试=&gt;交作业..