package com.test; import javax.swing.JFrame; import javax.swing.JOptionPane; public class TestLove extends JFrame{ public static void main(String[] args) { new TestLove(); } int a=-1; public TestLove() { this.setTitle("love"); this.setSize(100,100); this.setDefaultCloseOperation(3); this.setLocationRelativeTo(null); while(true) { //确认弹窗 a=JOptionPane.showConfirmDialog(null, "你爱不爱我?"); if(a==0) { JOptionPane.showMessageDialog(null, "我就知道你是爱我的!!!"); break; } } this.setVisible(false); } }
时间: 2024-04-01 19:37:44 浏览: 109
这是一个Java程序,使用了Java的Swing库。它创建了一个名为TestLove的类,继承自JFrame类,并包含一个main方法。在TestLove类的构造函数中,它设置了窗口的标题、大小、关闭操作和位置。然后它进入了一个无限循环,每次循环都会弹出一个确认弹窗,询问用户是否爱他。如果用户点击了确认按钮,弹出一个消息提示框,显示“我就知道你是爱我的!!!”并退出循环,否则继续循环直到用户确认爱他为止。最后,它将窗口设为不可见状态。
相关问题
import java.awt.BorderLayout; import java.awt.EventQueue; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.util.HashMap; import java.util.Map; import javax.swing.JButton; import javax.swing.JFileChooser; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JList; import javax.swing.JOptionPane; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTextField; import javax.swing.ListSelectionModel; import javax.swing.border.EmptyBorder; public class SensitiveWordAnalyzer extends JFrame { private JPanel contentPane; private JTextField textFile; private JTextField textKeyword; private JList<String> listWords; private Map<String, Integer> wordMap; /** * Launch the application. */ public static void main(String[] args) { EventQueue.invokeLater(new Runnable() { public void run() { try { SensitiveWordAnalyzer frame = new SensitiveWordAnalyzer(); frame.setVisible(true); } catch (Exception e) { e.printStackTrace(); } } }); } /** * Create the frame. */ public SensitiveWordAnalyzer() { setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setBounds(100, 100, 450, 300);分析这段代码
这段代码定义了一个名为SensitiveWordAnalyzer的Java GUI应用程序。该应用程序可以用来分析文本文件中的敏感词并统计它们出现的次数。应用程序包含一个JFrame窗口和几个Swing组件,包括JPanel、JTextField、JList、JScrollPane、JLabel和JButton等。
在GUI中,用户可以选择要分析的文本文件,还可以添加或删除敏感词。文本文件和敏感词都保存在内存中的Map中。当用户单击“分析”按钮时,应用程序将读取文本文件并搜索其中的敏感词。在JList中,用户可以查看所有的敏感词及其出现次数。
该应用程序使用了Java的Swing GUI库来创建用户界面。它还使用了Java的文件I/O类来读取和写入文件。
package src; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import javax.swing.JButton; import javax.swing.JFileChooser; import javax.swing.JFrame; import javax.swing.JOptionPane; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTextArea; public class Test3 extends JFrame { JTextArea txta=new JTextArea(10,21); JScrollPane scrp=new JScrollPane(txta); JButton btn1=new JButton("读t3_1.txt到文本框"); JButton btn2=new JButton("保存到t3_2.txt"); JPanel p=new JPanel(); public Test3() { p.add(scrp); p.add(btn1); p.add(btn2); this.setContentPane(p); this.setSize(300,270); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setLocationRelativeTo(null); this.setVisible(true); } public static void main(String[] args) { Test3 fr=new Test3(); fr.setTitle("第3题"); } }补全上述代码
可以按照以下步骤进行代码的补全:
1. 在Test3类中添加一个构造方法,然后在方法中为btn1和btn2添加监听器,用于实现读取和保存文件的功能。
2. 在读取文件的监听器中,可以使用JFileChooser组件选择文件,然后使用FileInputStream和BufferedInputStream读取文件内容,并将内容显示在文本框中。
3. 在保存文件的监听器中,可以使用JFileChooser组件选择保存文件的路径和文件名,然后使用FileOutputStream和BufferedOutputStream将文本框中的内容写入到文件中。
完整代码如下:
```
package src;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
public class Test3 extends JFrame {
JTextArea txta = new JTextArea(10, 21);
JScrollPane scrp = new JScrollPane(txta);
JButton btn1 = new JButton("读t3_1.txt到文本框");
JButton btn2 = new JButton("保存到t3_2.txt");
JPanel p = new JPanel();
public Test3() {
p.add(scrp);
p.add(btn1);
p.add(btn2);
this.setContentPane(p);
this.setSize(300, 270);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setLocationRelativeTo(null);
this.setVisible(true);
// 为btn1添加监听器,读取文件内容
btn1.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// 创建文件选择器
JFileChooser chooser = new JFileChooser();
chooser.setDialogTitle("选择文件");
int result = chooser.showOpenDialog(Test3.this);
if (result == JFileChooser.APPROVE_OPTION) {
try {
// 读取文件内容
File file = chooser.getSelectedFile();
FileInputStream fis = new FileInputStream(file);
BufferedInputStream bis = new BufferedInputStream(fis);
byte[] buffer = new byte[(int) file.length()];
bis.read(buffer);
String text = new String(buffer);
txta.setText(text);
bis.close();
fis.close();
} catch (IOException ex) {
JOptionPane.showMessageDialog(Test3.this, "读取文件失败");
}
}
}
});
// 为btn2添加监听器,保存文件内容
btn2.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// 创建文件选择器
JFileChooser chooser = new JFileChooser();
chooser.setDialogTitle("保存文件");
int result = chooser.showSaveDialog(Test3.this);
if (result == JFileChooser.APPROVE_OPTION) {
try {
// 写入文件内容
File file = chooser.getSelectedFile();
FileOutputStream fos = new FileOutputStream(file);
BufferedOutputStream bos = new BufferedOutputStream(fos);
String text = txta.getText();
byte[] buffer = text.getBytes();
bos.write(buffer);
bos.close();
fos.close();
} catch (IOException ex) {
JOptionPane.showMessageDialog(Test3.this, "保存文件失败");
}
}
}
});
}
public static void main(String[] args) {
Test3 fr = new Test3();
fr.setTitle("第3题");
}
}
```
阅读全文