- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个文本需要格式化,文本的第一个单词需要加粗、大字体并居中。
为了进行这种格式化,我使用了 TextSamplerDemo.java 中的解决方案在 JTextComponents 的 oracle 教程中,解决方案工作得很好,但居中不起作用!
现在我知道 Stack Overflow 中已经有了答案关于在 JTextPane 和 other forums 上对齐文本但都是对齐所有文本的解决方案,没有对齐一个词或部分文本的解决方案。
同样,字体、大小和“粗体”(不知道正确的术语,但你明白我的意思;-p)它们都有效,但居中无效。
这是我用来设置 JTextPane 的代码:
import java.awt.BorderLayout;
import java.text.SimpleDateFormat;
import java.util.Locale;
import javax.swing.JInternalFrame;
import javax.swing.JTextPane;
import javax.swing.text.BadLocationException;
import javax.swing.text.SimpleAttributeSet;
import javax.swing.text.Style;
import javax.swing.text.StyleConstants;
import javax.swing.text.StyleContext;
import javax.swing.text.StyledDocument;
import domain.Fiche_Employe;
import persistance.Lecture_Fiche;
public class Attestation extends JInternalFrame {
/**
* Launch the application.
*/
/**
*
*/
private static final long serialVersionUID = 1L;
JTextPane attest;
/**
* Create the frame.
*/
public Attestation(String mat) {
//This a DataBase connection and data fetching
Fiche_Employe fiche=new Fiche_Employe();
Lecture_Fiche f=new Lecture_Fiche(mat, fiche);
f.lire_fiche();
//Frame Creation
setBounds(100, 100, 450, 300);
setVisible(true);
//Creation of the JtextPane
attest=createTextPane(fiche.getSociete(), fiche.getSexe(), fiche.getnom(), String.valueOf(fiche.getcnss()), new SimpleDateFormat("dd MMMMMMMMM yyyy", Locale.FRANCE).format(fiche.getDateEntree()), fiche.getQualification(),fiche.getCategorie(), fiche.getEchelon(), fiche.getSituationProf());
getContentPane().add(attest, BorderLayout.CENTER);
}
private JTextPane createTextPane(String code, String sexe, String nomPrenom, String cnss, String dateEntree,
String Qualif, String Categ, String ech, String SituatProf) {
String civilite = null;
String Societe;
if (sexe.replaceAll("\\s+$", "").toLowerCase().equals("m"))
civilite="Monsieur ";
else if (sexe.replaceAll("\\s+$", "").toLowerCase().equals("f"))
civilite="Madame ";
if (code.replaceAll("\\s+$", "")=="200")
Societe="text";
else
Societe="text";
String newline = "\n";
String[] initString =
{ "ATTESTATION",
newline+newline+newline+"Nous soussignés, "+Societe+" attestons que Monsieur ",
nomPrenom.replaceAll("\\s+$", ""),
", immatriculé à la caisse Nationale de Sécurité Sociale sous le numéro ",
cnss.replaceAll("\\s+$", ""),
", travaille dans notre société depuis le ",
dateEntree+ "." + newline+newline,
civilite, //regular
nomPrenom.replaceAll("\\s+$", ""),
" est employé actuellement en qualité de " +
Qualif.replaceAll("\\s+$", "") + " "+
SituatProf.replaceAll("\\s+$", ""),
" catégorie "+Categ.replaceAll("\\s+$", ""),
" échelon "+ech.replaceAll("\\s+$", ""),
", conformément à la Convention Collective Nationale de l’Industrie Laitière et Dérivés.",
newline +newline,
"Cette attestation est délivrée à l’intéressé, sur sa demande, pour servir et valoir ce que de droit."
};
String[] initStyles =
{ "centeredBold", "regular", "regular", "regular", "regular",
"regular", "regular", "regular", "regular",
"regular", "regular", "regular", "regular", "regular", "regular"
};
JTextPane textPane = new JTextPane();
textPane.setContentType("text/html");
textPane.setText("<html><center><b> </b></center></html>");
StyledDocument doc = textPane.getStyledDocument();
addStylesToDocument(doc);
try {
for (int i=0; i < initString.length; i++) {
doc.insertString(doc.getLength(), initString[i],
doc.getStyle(initStyles[i]));
}
} catch (BadLocationException ble) {
System.err.println("Couldn't insert initial text into text pane.");
}
return textPane;
}
protected void addStylesToDocument(StyledDocument doc) {
//Initialize some styles.
Style def = StyleContext.getDefaultStyleContext().
getStyle(StyleContext.DEFAULT_STYLE);
Style regular = doc.addStyle("regular", def);
StyleConstants.setFontFamily(def, "Calibri");
StyleConstants.setFontSize(regular, 16);
Style s = doc.addStyle("italic", regular);
StyleConstants.setItalic(s, true);
s = doc.addStyle("bold", regular);
StyleConstants.setBold(s, true);
doc.addStyle("centeredBold", regular);
SimpleAttributeSet center=new SimpleAttributeSet();
StyleConstants.setAlignment(center, StyleConstants.ALIGN_CENTER);
StyleConstants.setBold(center, true);
StyleConstants.setFontSize(center, 26);
StyleConstants.setFontFamily(center, "Cambria");
doc.getStyle("centeredBold").addAttributes(center);
s = doc.addStyle("small", regular);
StyleConstants.setFontSize(s, 10);
s = doc.addStyle("large", regular);
StyleConstants.setFontSize(s, 16);
s = doc.addStyle("icon", regular);
StyleConstants.setAlignment(s, StyleConstants.ALIGN_CENTER);
s = doc.addStyle("button", regular);
StyleConstants.setAlignment(s, StyleConstants.ALIGN_CENTER);
}
}
如有任何帮助,我们将不胜感激,并提前致谢。
最佳答案
but they are all solutions about aligning all the text, and there are non about aligning one word or a part of the text.
您只能更改整行的对齐方式。没有理由不能让一条线居中,另一条线右对齐,另一条线左对齐。您只需要更改将要插入(或已经插入)的文本的段落属性。
您看到的示例展示了如何更改文档中当前所有文本的对齐方式,但这并不意味着您不能逐行更改对齐方式。
例如:
JTextPane textPane = new JTextPane();
textPane.setText( "this line is centered" );
StyledDocument doc = textPane.getStyledDocument();
// Define paragraph (line) attributes
SimpleAttributeSet center = new SimpleAttributeSet();
StyleConstants.setAlignment(center, StyleConstants.ALIGN_CENTER);
SimpleAttributeSet left = new SimpleAttributeSet();
StyleConstants.setAlignment(left, StyleConstants.ALIGN_LEFT);
// change all lines in the Document to be centered
doc.setParagraphAttributes(0, doc.getLength(), center, false);
// all newly added line will be left justified
doc.setParagraphAttributes(doc.getLength(),1 , left, false);
// Add some text
try
{
doc.insertString(doc.getLength(), "\newly added text is left justified", null );
}
catch(Exception e) {}
and as i understood, the Jtextpane supports formatting better then the editorpane,
JEditorPane 支持HTML 的强大功能,但是您需要将文本转换为HTML 并创建所有的HTML 标签。我发现使用 JTextPane 将简化文本,使用属性更易于编码和修改。
关于java - JTextPane 中单词的居中对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24407190/
我正在序列化一个 JTextPane 的 Document,以便将其样式化的文本保存到数据库中。我有一个 caretListener 附加到 JTextPane 我想知道序列化这个 Document
我目前正在尝试制作 Log4j 2登录 JTextPane .它应该像 Netbeans IDE 控制台中的 STDERR 或 STDOUT(包括文本样式 - 颜色)。 我知道我需要创建一个 appe
我在 JScrollPane 中有一个 JTextPane(水平策略从不,垂直策略始终)。我编写了一种在此 JTextPane 中附加文本的方法。现在有一个按钮,单击该按钮时,操作监听器正在运行,执行
我有一个 JTextPane (1),旁边还有另一个 (2)。我已经同步它们,如果在(2)中输入一行,则在(1)中输入一行,但是当我插入图像(24px)时,(2)会自动调整行长度,但(1)当然不会调整
当我使用 JTextPane 并在 HTML 编辑器模式下键入一些文本时 JTextPane textPane = new JTextPane(); textPane.setContentType("
我在 java swing 中有一个应用程序包含 JTextPane 和 HTMLDocument。假设我将 Pane 的文本设置为:
有没有办法读取 JTextPane 的内容逐行?很像 BufferedReader? 最佳答案 Element root = textPane.getDocument().getDefaultRoot
这是我的问题。我正在编写一个具有语法突出显示的编辑器。没什么特别的,但它可以完成工作。问题是我正在实现错误识别,当我想添加样式来下划线时,我覆盖了我以前的样式。这是一个屏幕截图: 我正在做这样的事情来
所以我想写一个简单的编辑器。我想将所有字符之间的所有字符都涂成灰色“字符。它的片段是: class MainPanel extends JPanel { private int WIDTH = 800
我正在开发一个应用程序,当我从列表中选择一个值(文件)时,它应该在不同形式的 jTextPane 中打开。我正在使用两个面板,一个是显示我的列表的主面板,一个是 ExcelSheet,当我单击列表值时
我创建了一个使用 JTextPane 的 Swing 界面。 JTextPane 使用自定义颜色突出显示: textPane.getHighlighter().addHighlight(startPo
有没有办法使 JTextPane 中的文本看起来与控制台输出的文本相似?我的意思是,基本上,每个字符如何具有相同的宽度,以便 ASCII 艺术或间距缩进等内容可以正常工作。 例如,目前,如果我输入“F
我没有得到垂直滚动条。滚动JTextPane。我正在使用 JPanel 显示 JScrollPane 内部的 JTextPane。这是代码。请查看。谢谢。 import java.awt.*; imp
尝试使用此代码,但它不能准确地改变颜色,请注意“停止”一词。当您键入单词时就会发生这种情况。 https://stackoverflow.com/a/28773736/7694892 最佳答案 在我看
我正在尝试用 JScrollPane 包装 JTextPane,并且我需要背景透明。 这是我的代码: public CharPanel(){ super.setLayout(null);
我使用两个语句添加了图像和文本。但在 JTextPane 中,它仅显示文本。我的代码如下 - jTextPane1.insertIcon(new ImageIcon("t.png")); jTextP
我有两个具有静态大小的 JTextPanes,我想像文本处理器中的两个页面一样连接它们。如果我在第一个 JTextPane(页面)中写入一些内容,并且对于一个 JTextPane 来说太长,那么它会溢
我有一个 JTextPane,其模型是 DefaultStyledDocument。我注意到,如果显示文本,然后使用 setCharacterAttributes 将一行上的每个字符更改为更大的字体,
我有来自 Netbeans 设计器部分的 JTextPane。我想在其上添加列和行。但是,JTextPane 的属性窗口中没有添加列或行的选项。还有其他方法可以做到这一点吗? 最佳答案 JTextPa
我有一个文本需要格式化,文本的第一个单词需要加粗、大字体并居中。 为了进行这种格式化,我使用了 TextSamplerDemo.java 中的解决方案在 JTextComponents 的 oracl
我是一名优秀的程序员,十分优秀!