好的,我编辑了原帖,所以没有人会再次争论标题(这是我的错,所以现在不要生气)... 我有一部分代码采用TextField的文本(实际上有两个TextField,但用户一次只能使用一个)并将其搜索到存储在终端中的文件中。问题是我总是得到一个空字符串,即使其中一个TextFields有文本... 这是代码:
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
public class Search implements ActionListener{
JFrame frame;
JButton click;
JLabel comando, carico;
JTextField textv, text;
JTextArea res;
String pathFile = "C:\\Log.txt";
String str= new String();
Search(){
frame = new JFrame("Search");
frame.setSize(400, 200);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new GridLayout(1,2));
frame.setResizable(false);
JPanel panel = new JPanel();
panel.setLayout(new GridLayout(7,1));
click = new JButton("Cerca");
comando = new JLabel("Comando");
carico = new JLabel("A carico di:");
textv = new JTextField("");
text = new JTextField("");
res = new JTextArea("");
panel.add(comando);
panel.add(textv);
panel.add(carico);
panel.add(text);
panel.add(click);
res.setLineWrap(true);
res.setWrapStyleWord(true);
res.setBorder(BorderFactory.createEmptyBorder(4, 4, 4, 4));
JScrollPane scroller = new JScrollPane(res);
scroller.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
panel.add(scroller);
frame.add(panel);
click.addActionListener(this);
click.setSize(70, 35);
frame.setVisible(true);
}
public void actionPerformed (ActionEvent e){
if(e.getSource()==click){
res.setText(null);
if(textv != null) {cercaStringa(pathFile, textv.getText().toString());}
else {cercaStringa(pathFile, text.getText().toString());}
}
}
public void cercaStringa(String pathFile, String stringa){
try {
BufferedReader in = new BufferedReader(new FileReader(pathFile));
String line = new String();
while((line = in.readLine())!=null) {
if(line.contains(stringa)){
res.append(line);
res.append("\n");
}
}
}
catch(IOException ex) { ex.printStackTrace();}
}
public static void main (String[] args){
new Search();
}
}
我真的要扔掉窗外的所有东西,因为我知道解决方案很简单,但我无法得到它......
答案 0 :(得分:6)
保证始终为str
提供true
的{{1}}唯一值为空line.contains(str)
。
(您应该假设String
方法根据其规范工作。在Java SE中如此重要的方法中先前未检测到的错误的可能性微不足道,尤其是像您一样壮观的错误当然,声称在没有任何确凿证据的情况下破坏它只会浪费每个人的时间......尤其是你的。)