-
FlowLayout BorderLayout GridLayout CardLayout GridBagLayout查看全部
-
public MyFrame(String title){ super(title); panel.setlayout(null); panel.setSize(80,50); panel.setlocation(50,50); button.setSize(80,50); button.setLocation(80,80); panel.add(button); panel.setBackground(Color.yellow); setLayout(null); add(panel); setBackground(Color.yellow); setSize(500,500); setVisible(true);}查看全部
-
setLayout(null); Window Frame Dialog BorderLayout Panel Applet FlowLayout;查看全部
-
package gui; import java.awt.*; public class MyFrame extends Frame{ Panel panel=new Panel(); Button button=new Button("press me"); public MyFrame(String title){ super(title); panel.add(button); panel.setBackground(Color.yellow); add(panel); setBackground(Color.blue); setSize(500,500); setVisible(turre);} public static void main(String args[]){ MyFrame f=new MyFrame("hello"); }查看全部
-
import java.awt.*; public class FrameShower{ public static void main(String args[]){ Frame f=new Frame("hello"); f.add(new Button("PressMe"); f.setSize(100,100); f.setVisible(true);}}查看全部
-
frame.add();查看全部
-
container能够用来存放组件 window panel查看全部
-
while(data!=null){ System.out.println(data); data=br.readLine(); System.out.println(""); } 这样就可以自动换行了查看全部
-
URL定义与构成查看全部
-
常用端口号查看全部
-
url.getHost() url.getPath() url.getFile()查看全部
-
InetAddress类 InetAddress.getLocalHost()//获取主机实例 InetAddress.getName("IP或者主机名")//获取主机实例。查看全部
-
服务端设置死循环已达到循环监听的效果查看全部
-
客户端socket,转来转去好晕啊啊啊查看全部
-
字符集不匹配导致乱码,字节流转换为字符流时改变字符编码查看全部
举报
0/150
提交
取消