把主界面設(shè)置成一個(gè)JScrollPane,剩下的所有東西都添加到JScrollPane中。
創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),海安企業(yè)網(wǎng)站建設(shè),海安品牌網(wǎng)站建設(shè),網(wǎng)站定制,海安網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,海安網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競爭力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。
public MainFrame() {
setSize(400, 300);
setDefaultCloseOperation(EXIT_ON_CLOSE);
JScrollPane scrollPane_2 = new JScrollPane();
getContentPane().add(scrollPane_2, BorderLayout.CENTER);
JTextPane textPane = new JTextPane();
textPane.setText(content);
scrollPane_2.setViewportView(textPane);
setVisible(true);
}
public static void main(String[] args) {
new MainFrame();
}
}
import java.util.Scanner;
public class Test {
public static void main(String[] arg) throws Exception {
Scanner reader = new Scanner(System.in);
System.out.println("給你一個(gè)英文小寫字母,請(qǐng)猜測這個(gè)字母");
char a[];
a = new char[26];// 創(chuàng)建數(shù)組a ,使得a有26個(gè)元素
for (int k = 0; k a.length; k++) {
a[k] = (char) (k + 97);
}
int i = (int) ((Math.random()) * (a.length));
char realLetter = '\0';
realLetter = a[i];// 將數(shù)組a的第i個(gè)元素賦值給realLetter
String str = "";
System.out.print("輸入您的猜測:");
str = reader.nextLine();
char yourGuess = str.charAt(0);
while (yourGuess != realLetter) // 循環(huán)條件
{
if (yourGuess realLetter) // 猜大的條件代碼
{
System.out.print("猜大了,再輸入你的猜測:");
str = reader.nextLine();
yourGuess = str.charAt(0);
} else if (yourGuess realLetter) // 猜小的條件代碼
{
System.out.print("猜小了,再輸入你的猜測:");
str = reader.nextLine();
yourGuess = str.charAt(0);
}else
break;
}
System.out.println("猜對(duì)了!");
}
}