(更新的问题)
首先,我认为这"\n"
相当于System.getProperty("line.separator")
我写了一些使用字符串的方法,其中一些检查是否存在新行
if (string.charAt(i) == '\n') {//do something;}
但我注意到检查"\n"
与添加的新行不匹配System.getProperty("line.separator")
这是一个SSCCE来证明我的主张!:
描述:
两串相同的文本;一个alpha_String
使用 添加了新行"\n"
,另一个beta_String
使用 添加了新行System.getProperty("line.separator")
有一个名为String removeExtraNewLines(String)
用于删除字符串中任何额外的新行并将其返回的方法;正如其标题所暗示的那样。使用此方法过滤的两个字符串。
两个按钮buttonAlpha
,每个按钮都使用过滤buttonBeta
后的字符串设置文本JTextArea
您会注意到该方法捕获/匹配并删除额外的新行, alpha_String
但不要对beta_String
import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import javax.swing.*;
public class NewLineTest extends JPanel
{
JPanel buttonPanel;
JPanel textAreaPanel;
JButton buttonAlpha;
JButton buttonBeta;
JTextArea textArea;
String n = "\n";
String s = System.getProperty("line.separator");
String alpha_String;
String beta_String;
public NewLineTest()
{
createSentencesText();
buttonAlpha = new JButton("Alpha String");
buttonAlpha.addActionListener(eventWatcher);
buttonBeta = new JButton("Beta String");
buttonBeta.addActionListener(eventWatcher);
textArea = new JTextArea(0, 0);
JScrollPane scrollTextArea = new JScrollPane(textArea);
scrollTextArea.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
textArea.setEditable(false);
buttonPanel = new JPanel();
textAreaPanel = new JPanel(new BorderLayout());
buttonPanel.add(buttonAlpha);
buttonPanel.add(buttonBeta);
textAreaPanel.add(scrollTextArea, BorderLayout.CENTER);
JSplitPane splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, textAreaPanel, buttonPanel);
splitPane.setDividerLocation(400);
splitPane.setResizeWeight(.5d);
this.setLayout(new BorderLayout());
this.add(splitPane);
}
private void createSentencesText()
{
alpha_String = "A: Let’s go to the beach." + n + n
+ "B: That’s a great idea." + n
+ "A: We haven’t been in a while." + n + n
+ "B: We haven’t been in a month." + n
+ "A: The last time we went, you almost drowned." + n
+ "B: No, I didn’t." + n + n + n
+ "A: Then why did the lifeguard dive into the water?" + n
+ "B: I think he wanted to cool off." + n
+ "A: He swam right up to you." + n
+ "B: And then he turned right around." + n
+ "A: Maybe you’re right." + n
+ "B: Maybe we should get going.";
beta_String = "A: Let’s go to the beach." + s + s
+ "B: That’s a great idea." + s
+ "A: We haven’t been in a while." + s + s
+ "B: We haven’t been in a month." + s
+ "A: The last time we went, you almost drowned." + s
+ "B: No, I didn’t." + s + s + s
+ "A: Then why did the lifeguard dive into the water?" + s
+ "B: I think he wanted to cool off." + s
+ "A: He swam right up to you." + s
+ "B: And then he turned right around." + s
+ "A: Maybe you’re right." + s
+ "B: Maybe we should get going.";
}
public static String removeExtraNewLines(String s)
{
String myNewString = s.trim();
StringBuilder stringB = new StringBuilder();
char previouseChar = '~';
for (int i = 0; i < myNewString.length(); i++)
{
if (i > 1)
{
previouseChar = myNewString.charAt(i - 1);
}
if ((myNewString.charAt(i) == '\n') && (previouseChar == '\n'))
{
continue;
}
stringB.append(myNewString.charAt(i));
}
myNewString = stringB.toString();
return myNewString;
}
AbstractAction eventWatcher = new AbstractAction()
{
@Override
public void actionPerformed(ActionEvent ae)
{
Object source = ae.getSource();
if (source == buttonAlpha)
{
String arranged_string_alpha = removeExtraNewLines(alpha_String);
textArea.setText(arranged_string_alpha);
}
if (source == buttonBeta)
{
String arranged_string_beta = removeExtraNewLines(beta_String);
textArea.setText(arranged_string_beta);
}
}
};
private static void createAndShowGUI()
{
JFrame frame = new JFrame("NewLine Test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(700, 300);
frame.add(new NewLineTest(), BorderLayout.CENTER);
frame.setVisible(true);
}
public static void main(String[] args)
{
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
UIManager.put("swing.boldMetal", Boolean.FALSE);
createAndShowGUI();
}
});
}
}
所以问题是:为什么检查"\n"
不匹配使用添加的新行System.getProperty("line.separator")
?,以及如何匹配它们?