我正在创建一个简单的RTF文档编辑器。我已经添加了代码来创建一个新的RTF文档,打开RTF文档,保存文档和其他格式功能,如粗体,斜体,下划线和更改大小写(大写到小写,反之亦然)。我正在使用JTextPane组件。
我的问题:当JTextPane的内容包含不同的字体和不同的字体大小和不同的颜色时,如果我选择了所有的内容并选择了“大写”菜单选项,则内容将变为大写,但所有不同的字体、字体大小和颜色将变为相同的字体、相同的字体大小和相同的颜色,请验证图像:在转换为大写之前:
选择所有内容并选择“大写”选项:
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Insets;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JMenuItem;
import javax.swing.JPanel;
import javax.swing.JPopupMenu;
import javax.swing.JScrollPane;
import javax.swing.JTextPane;
import javax.swing.JToolBar;
import javax.swing.UIManager;
import javax.swing.text.AttributeSet;
import javax.swing.text.Document;
import javax.swing.text.MutableAttributeSet;
import javax.swing.text.SimpleAttributeSet;
import javax.swing.text.Style;
import javax.swing.text.StyleContext;
import javax.swing.text.StyledDocument;
import javax.swing.text.rtf.RTFEditorKit;
public class MyNotepadMini implements ActionListener {
public JFrame frame;
public JPanel panel;
public JTextPane textPane;
public RTFEditorKit rtf;
public StyleContext styleContext;
public Document document;
public JScrollPane scrollPane;
public JToolBar toolBar;
public StyledDocument styledDocument;
public Style defaultStyle;
public AttributeSet attrs;
public Style style;
public MutableAttributeSet mas;
public JButton lowerAndUpperCaseBtn;
public JPopupMenu popupMenu;
public JMenuItem lowerCaseMI;
public JMenuItem upperCaseMI;
public SimpleAttributeSet simpleAttrs;
public MyNotepadMini() {
try {
UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
} catch (Exception e) {
e.printStackTrace();
}
frame = new JFrame("My Wordpad");
panel = new JPanel(new BorderLayout());
toolBar = new JToolBar();
toolBar.setBounds(0,0,100,30);
rtf = new RTFEditorKit();
textPane = new JTextPane();
textPane.setEditorKit(rtf);
textPane.setMargin(new Insets(10,5,5,5));
styleContext = new StyleContext();
mas = textPane.getInputAttributes();
simpleAttrs = new SimpleAttributeSet();
styledDocument = textPane.getStyledDocument();
textPane.setDocument(styledDocument);
scrollPane = new JScrollPane();
scrollPane.getViewport().add(textPane);
lowerAndUpperCaseBtn = new JButton("Change Case");
lowerAndUpperCaseBtn.addMouseListener(new MouseAdapter() {
public void mouseClicked(MouseEvent me) {
int startPosition = 0;
int endPosition = 0;
if ((textPane.getSelectionStart() != textPane.getSelectionEnd())) {
startPosition = textPane.getSelectionStart();
endPosition = textPane.getSelectionEnd();
textPane.setSelectionStart(startPosition);
textPane.setSelectionEnd(endPosition);
textPane.getCaret().setSelectionVisible(true);
}
}
});
popupMenu = new JPopupMenu();
lowerCaseMI = new JMenuItem("lowercase");
upperCaseMI = new JMenuItem("UPPERCASE");
popupMenu.add(lowerCaseMI);
popupMenu.add(upperCaseMI);
lowerAndUpperCaseBtn.addActionListener(this);
lowerCaseMI.addActionListener(this);
upperCaseMI.addActionListener(this);
toolBar.setFloatable(false);
toolBar.add(lowerAndUpperCaseBtn);
toolBar.setBackground(Color.WHITE);
scrollPane.setPreferredSize(new Dimension(600,400));
textPane.setFont(new Font("Arial", Font.PLAIN, 12));
textPane.setInheritsPopupMenu(true);
panel.add(toolBar, BorderLayout.NORTH);
panel.add(scrollPane, BorderLayout.CENTER);
panel.add(new JLabel(" "), BorderLayout.EAST);
panel.add(new JLabel(" "), BorderLayout.WEST);
panel.add(new JLabel(" "), BorderLayout.SOUTH);
frame.add(panel);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.pack();
textPane.requestFocus();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
public static void main(String[] args) {
new MyNotepadMini();
}
public void actionPerformed(ActionEvent ae) {
if (ae.getSource() == lowerAndUpperCaseBtn) {
popupMenu.show(lowerAndUpperCaseBtn, 0, lowerAndUpperCaseBtn.getBounds().height);
} else if (ae.getSource() == lowerCaseMI) {
boolean lowerCaseFlag = false;
int startPosition = 0;
int endPosition = 0;
try {
if ((textPane.getSelectionStart() != textPane.getSelectionEnd()) && (!lowerCaseFlag)) {
startPosition = textPane.getSelectionStart();
endPosition = textPane.getSelectionEnd();
System.out.println("Selected text: " + textPane.getSelectedText());
textPane.replaceSelection(textPane.getSelectedText().toLowerCase());
textPane.setSelectionStart(startPosition);
textPane.setSelectionEnd(endPosition);
textPane.getCaret().setSelectionVisible(true);
lowerCaseFlag = true;
}
lowerAndUpperCaseBtn.setFocusable(false);
textPane.requestFocus();
} catch (Exception e) {
e.printStackTrace();
}
} else if (ae.getSource() == upperCaseMI) {
boolean upperCaseFlag = false;
int startPosition = 0;
int endPosition = 0;
try {
if ((textPane.getSelectionStart() != textPane.getSelectionEnd()) && (!upperCaseFlag)) {
startPosition = textPane.getSelectionStart();
endPosition = textPane.getSelectionEnd();
System.out.println("Selected text: " + textPane.getSelectedText());
textPane.replaceSelection(textPane.getSelectedText().toUpperCase());
textPane.setSelectionStart(startPosition);
textPane.setSelectionEnd(endPosition);
textPane.getCaret().setSelectionVisible(true);
upperCaseFlag = true;
}
lowerAndUpperCaseBtn.setFocusable(false);
textPane.requestFocus();
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
当您用TextPane.ReplaceSelection
替换所选内容时,将删除所选文本,然后使用当前输入样式添加新文本。
要实现您想要的,需要使用文档提供的方法setCharacterAttributes更新所选内容的字符属性。
问题内容: 我想将字符串的第一个字符转换为大写,并将其余字符转换为小写。我该怎么做? 例: 问题答案: 尝试以下尺寸: 基本上,它首先处理空字符串和一个字符字符串的特殊情况,否则正确处理一个两字符以上的字符串。而且,正如评论中指出的那样,功能不需要使用一个字符的特殊情况,但我仍然希望明确,特别是如果它导致更少的无用调用(例如子字符串以获取空字符串),小写字母它,然后附加它。
我有关于在JTextField打字的问题。我的程序搜索通过几个csv文件和寻找指定的JTextField字符串。我有添加到readLine函数". toLowerCase"读取所有字符串作为小写。在写入JTextField时,是否可以将JTextField设置为自动将大写转换为小写? if(line.toLowerCase()。包含(searchedString))
问题内容: sql server 2000表之一中具有以下格式的日期值 如何将上述格式的数据值转换为24小时日期格式,如下所示 问题答案: 试试这个: 首先将日期转换为,然后您可以按以下方式进行操作:
本文向大家介绍vim 转换文字大小写,包括了vim 转换文字大小写的使用技巧和注意事项,需要的朋友参考一下 示例 在正常模式下: ~ 反转光标下字符的大小写, gu{motion}将由{motion}, gU{motion} 大写的文本由 {motion} 示例(^标记光标位置): 在可视模式下: ~ 反转所选文本的大小写, u 小写所选文本, U 大写所选文本 示例(^^^标记视觉选择):
在Atom编辑器中将当前选定的文本转换为大写(或小写)的快捷键是什么?
在Java中如何将snake case转换为camel case? 输入:“输入蛇的情况” 输出:"InputInSnakeCase"