当前位置: 技术问答>java相关
关于JB5下调试小应用程序的问题
来源: 互联网 发布时间:2015-01-25
本文导语: 我看书上有个小应用程序,我想在JB下调试出来,于是我先建了个project,然后我又新建了个applet,可是我发现模板中已经有了如下代码: package test; import java.awt.*; import java.awt.event.*; import java.applet.*; public class App...
我看书上有个小应用程序,我想在JB下调试出来,于是我先建了个project,然后我又新建了个applet,可是我发现模板中已经有了如下代码:
package test;
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
public class Applet1 extends Applet {
boolean isStandalone = false;
/**Get a parameter value*/
public String getParameter(String key, String def) {
return isStandalone ? System.getProperty(key, def) :
(getParameter(key) != null ? getParameter(key) : def);
}
/**Construct the applet*/
public Applet1() {
}
/**Initialize the applet*/
public void init() {
try {
jbInit();
}
catch(Exception e) {
e.printStackTrace();
}
}
/**Component initialization*/
private void jbInit() throws Exception {
}
/**Get Applet information*/
public String getAppletInfo() {
return "Applet Information";
}
/**Get parameter info*/
public String[][] getParameterInfo() {
return null;
}
}
而我抄的程序如下:
import java.awt.Graphics;
import java.awt.Font;
import java.awt.Color;
import java.util.Data;
public class showDate extends java.applet.Applet
{
Font msgFnt = new Font("TimesRoman",Font.ITALIC,30);
Date timeNow = new Date();
public void paint(Graphics g)
{
g.setFont(msgFnt);
g.setColor(Color.blue);
g.drawString(timeNow.toString(),5,50);
}
}
请问谁能告诉我详细的步骤。
初学,多多关照啦!
package test;
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
public class Applet1 extends Applet {
boolean isStandalone = false;
/**Get a parameter value*/
public String getParameter(String key, String def) {
return isStandalone ? System.getProperty(key, def) :
(getParameter(key) != null ? getParameter(key) : def);
}
/**Construct the applet*/
public Applet1() {
}
/**Initialize the applet*/
public void init() {
try {
jbInit();
}
catch(Exception e) {
e.printStackTrace();
}
}
/**Component initialization*/
private void jbInit() throws Exception {
}
/**Get Applet information*/
public String getAppletInfo() {
return "Applet Information";
}
/**Get parameter info*/
public String[][] getParameterInfo() {
return null;
}
}
而我抄的程序如下:
import java.awt.Graphics;
import java.awt.Font;
import java.awt.Color;
import java.util.Data;
public class showDate extends java.applet.Applet
{
Font msgFnt = new Font("TimesRoman",Font.ITALIC,30);
Date timeNow = new Date();
public void paint(Graphics g)
{
g.setFont(msgFnt);
g.setColor(Color.blue);
g.drawString(timeNow.toString(),5,50);
}
}
请问谁能告诉我详细的步骤。
初学,多多关照啦!
|
应该是把下面加到你的Applet1里
Font msgFnt = new Font("TimesRoman",Font.ITALIC,30);
Date timeNow = new Date();
public void paint(Graphics g)
{
g.setFont(msgFnt);
g.setColor(Color.blue);
g.drawString(timeNow.toString(),5,50);
}
变成这样
public class Applet1 extends Applet {
。
。
。
Font msgFnt = new Font("TimesRoman",Font.ITALIC,30);
Date timeNow = new Date();
public void paint(Graphics g)
{
g.setFont(msgFnt);
g.setColor(Color.blue);
g.drawString(timeNow.toString(),5,50);
}
。
。
。
}
Font msgFnt = new Font("TimesRoman",Font.ITALIC,30);
Date timeNow = new Date();
public void paint(Graphics g)
{
g.setFont(msgFnt);
g.setColor(Color.blue);
g.drawString(timeNow.toString(),5,50);
}
变成这样
public class Applet1 extends Applet {
。
。
。
Font msgFnt = new Font("TimesRoman",Font.ITALIC,30);
Date timeNow = new Date();
public void paint(Graphics g)
{
g.setFont(msgFnt);
g.setColor(Color.blue);
g.drawString(timeNow.toString(),5,50);
}
。
。
。
}
|
如果你觉的没有头绪,
直接删除框架代码,写出自己的,没有问题的
直接删除框架代码,写出自己的,没有问题的