- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对 JFormattedTextField 有疑问(我将它用作我们所有文本字段的基类)。
今天我尝试向该字段的文档添加一个文档过滤器,它工作得很好,但前提是它没有设置格式化程序工厂。
问题是,当设置格式化程序工厂(在我的例子中是默认类)并调用 processFocusEvent 时,会发生以下情况 (JFormattedTextField.java:595):
// if there is a composed text, process it first
if ((ic != null) && composedTextExists) {
ic.endComposition();
EventQueue.invokeLater(focusLostHandler);
} else {
focusLostHandler.run();
}
}
else if (!isEdited()) {
// reformat
setValue(getValue(), true, true);
}
然后调用 setValue() (JFormattedTextField.java:757):
private void setValue(Object value, boolean createFormat, boolean firePC) {
Object oldValue = this.value;
this.value = value;
if (createFormat) {
AbstractFormatterFactory factory = getFormatterFactory();
AbstractFormatter atf;
if (factory != null) {
atf = factory.getFormatter(this);
}
else {
atf = null;
}
setFormatter(atf);
}
else {
// Assumed to be valid
setEditValid(true);
}
setEdited(false);
if (firePC) {
firePropertyChange("value", oldValue, value);
}
}
如您所见,如果有工厂,它将尝试“刷新”格式化程序
(JFormattedTextField.java:439):
protected void setFormatter(AbstractFormatter format) {
AbstractFormatter oldFormat = this.format;
if (oldFormat != null) {
oldFormat.uninstall();
}
setEditValid(true);
this.format = format;
if (format != null) {
format.install(this);
}
setEdited(false);
firePropertyChange("textFormatter", oldFormat, format);
}
这是我遇到的真正问题 (JFormattedTextField$AbstractFormatter.class:950):
public void uninstall() {
if (this.ftf != null) {
installDocumentFilter(null);
this.ftf.setNavigationFilter(null);
this.ftf.setFormatterActions(null);
}
}
这里它破坏了我的文档过滤器,我知道格式化程序通常持有 documentFilter,但它真的打算那样工作吗?该文档应该是处理其过滤器(恕我直言)而不是格式化程序的对象。有没有办法在不使用专门的格式化程序子类的情况下绕过它?
示例代码:(按要求:))
package jftf;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.FlowLayout;
import javax.swing.JFormattedTextField;
import javax.swing.JFrame;
import javax.swing.JTextField;
import javax.swing.text.AbstractDocument;
import javax.swing.text.AttributeSet;
import javax.swing.text.BadLocationException;
import javax.swing.text.DefaultFormatter;
import javax.swing.text.DocumentFilter;
/**
* @author Pawel Miler
*/
public class JFormattedTextFieldExample {
private Container container;
private JFormattedTextField workingTextField;
private JFormattedTextField brokenTextField;
private DocumentFilter documentFilter;
public static void main(String[] args) {
new JFormattedTextFieldExample();
}
public JFormattedTextFieldExample() {
initializeDocumentFilter();
initializeTextFields();
initializeGui();
}
private void initializeDocumentFilter(){
documentFilter = new UppercaseDocumentFilter();
}
private void initializeTextFields() {
workingTextField = createTextField(false);
addDocumentFilter(workingTextField);
brokenTextField = createTextField(true);
addDocumentFilter(workingTextField);
}
private JFormattedTextField createTextField(boolean createFormatter) {
JFormattedTextField textField;
textField = createFormatter ? new JFormattedTextField(new DefaultFormatter()) : new JFormattedTextField();
return textField;
}
private void addDocumentFilter(JTextField textField) {
((AbstractDocument) textField.getDocument()).setDocumentFilter(documentFilter);
}
private void initializeGui() {
container = createFrame();
container.setLayout(new FlowLayout());
Dimension dimension = new Dimension(80, 20);
brokenTextField.setPreferredSize(dimension);
container.add(brokenTextField);
workingTextField.setPreferredSize(dimension);
container.add(workingTextField);
}
private Container createFrame() {
JFrame frame = new JFrame("JFormattedTextField example");
frame.setSize(200, 70);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
return frame.getContentPane();
}
public class UppercaseDocumentFilter extends DocumentFilter {
public void insertString(FilterBypass filterBypass, int offset, String text, AttributeSet attr) throws BadLocationException {
super.insertString(filterBypass, offset, text.toUpperCase(), attr);
}
public void replace(DocumentFilter.FilterBypass filterBypass, int offset, int length, String text, AttributeSet attrs) throws BadLocationException {
super.replace(filterBypass, offset, length, text.toUpperCase(), attrs);
}
}
}
两个文本字段应该有相同的文档过滤器,但是输入一个,它总是会得到大写字母,另一个则不会。
当前解决方案:(我刚才写的解决方法是在 JFormattedTextField 的子类中实现的,我需要在格式化程序也有 documentfilter 的情况下使用标志,你不能同时使用两者,但我不是很高兴需要一个完全没有)
public boolean isPreserveDocumentFilter() {
return preserveDocumentFilter;
}
public void setPreserveDocumentFilter(boolean preserveDocumentFilter) {
this.preserveDocumentFilter = preserveDocumentFilter;
}
/**
* We need to override if we want to use a documentFilter with DefaultFormatter implementation.
* For more info see: <a href="http://stackoverflow.com/questions/20074778/jformattedtextfield-destroys-documentfilter">info</a>
*/
@Override
protected void setFormatter(AbstractFormatter format) {
Document doc = this.getDocument();
DocumentFilter filter = null;
if (preserveDocumentFilter) {
if ( doc instanceof AbstractDocument ) {
filter = ((AbstractDocument) doc).getDocumentFilter();
}
}
super.setFormatter(format);
if ( filter != null ) {
((AbstractDocument) doc).setDocumentFilter(filter);
}
}
最佳答案
我遇到了同样的问题。基本上,正确的方法似乎是:覆盖 AbstractFormatter 本身的 getDocumentFilter()
protected DocumentFilter getDocumentFilter()
Subclass and override if you wish to provide a DocumentFilter to restrict what can be input. install will install the returned value onto the JFormattedTextField.
来自 https://docs.oracle.com/javase/7/docs/api/javax/swing/JFormattedTextField.AbstractFormatter.html
关于java - JFormattedTextField 破坏 DocumentFilter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20074778/
我正在创建一个自定义DocumentFilter。 但是,我必须在几个不同的组件上使用它。它们之间的唯一区别是字符限制,可以通过更改单个变量来更改字符限制。 问题是,如何将该变量传递给 Documen
您好,我有以下代码: AbstractDocument d = (AbstractDocument)editorText.getDocument(); d.setDocumen
我知道这是一个常见问题,但我正在尝试创建一个只接受 int 数字的 TextField,这几乎完成了,这是代码: 创建文本框: nome = new JFormattedTextField();
我正在尝试运行此代码: How to change the color of specific words in a JTextPane? private final class CustomDocu
我想在我的DocumentFilter上有一个这样的方法 public void replaceUpdate(int offset, int length, String text) {
我尝试将其他人为我需要的自定义 PlainDocument 组合在一起,但由于我不知道 PlainDocument 的机制,所以我失败了,它不起作用。我需要一些东西来确保我的文本字段只允许 2 个字母
Click here to show the gif DocumentFilter df = new DocumentFilter(){ @Override public void insertSt
我有一个程序,可以从 JTextField 中删除所有非数字字符并将其限制为 5 位数字。但此文档过滤器还删除了退格功能,这意味着我无法编辑已完成的输入。如何在不删除过滤器的情况下再次添加退格键? 编
我正在尝试为我的 JTextArea 设置一个 documentFilter。重写 insert(...) 方法后,我承认它从未被调用。怎么了?一段代码: package jaba; import j
所以,我有一个带有 JTextArea 和 DocumentFilter 的程序。它应该(除其他事项外)过滤掉制表符并防止它们完全输入到 JTextArea 中。 好吧,我打字的时候效果很好,但我仍然
我对 JFormattedTextField 有疑问(我将它用作我们所有文本字段的基类)。 今天我尝试向该字段的文档添加一个文档过滤器,它工作得很好,但前提是它没有设置格式化程序工厂。 问题是,当设置
Qestion First: I need to regex to match 111 or 111. or 111.111 (just aritrarty numbers) for a Docume
我正在使用 jtextarea 和文档过滤器。我希望只要用户在其中按下“b”,整个文本就会被删除,除了第一个字母。我怎样才能做到这一点。有些想法会很有用。 public void replace(Fi
我认为这一定是代码中的一个简单错误或我的误解,但我无法获得 DocumentFilter 来检测 insertString 事件。下面是一个简单的大写字母过滤器,但这并不重要,因为 insertStr
我正在尝试为我的 JTextArea 设置一个 documentFilter。覆盖了 insert(...) 方法后,我承认它从未被调用过。怎么了?一段代码: package jaba; import
我一直在努力理解这个 DocumentFilter 业务,就在我觉得我已经基本理解它时,我尝试了一个简单的测试用例,但它没有任何意义。 因此最初的目标是创建一个简单的 DocumentFilter 以
我想确保我的 JTextField 中始终有一个正整数。例如,当创建 GUI 时,JTextField 目前有一个默认值“1”,我希望它能够在用户决定按退格键时,而不是成为一个空文本字段,我希望它自动
我的问题如下: 我有一个: public class WWFormattedTextField extends JFormattedTextField implements FocusListener
我正在使用: String s = JOptionPane.showInputDialog(...); 从用户那里得到对问题的回复;该对话框设置为显示响应的文本字段。我想将响应中允许的字符限制为仅字母
我需要一个 JFormattedTextField 只允许输入 ##-###** 其中连字符始终出现在文本字段中,最后一个2 个字符,由 * 表示,可以是 2 个字母表 (a-z/A-Z),也可以什么
我是一名优秀的程序员,十分优秀!