首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 企业软件 > 行业软件 >

JTextArea->JTextPane 解决文字对齐方式的有关问题

2012-07-28 
JTextArea-JTextPane 解决文字对齐方式的问题转载自:http://www.blogjava.net/cerulean/archive/2010/03/

JTextArea->JTextPane 解决文字对齐方式的问题

转载自:http://www.blogjava.net/cerulean/archive/2010/03/10/314976.html

引子只是个小问题,JTextArea多行文本,想设置文字的对齐方式为居中对齐,却发现死活没有合适有效的方法,又试了JTextField和JLabel,都不理想。搜了一溜够看到JTextPane的解决方法,其实真是有点儿大材小用了。JTextPane里可以设置style,对齐方式、字体字号、颜色等等,并且还可以设置style的作用范围,挺方便的。另外,想把文字区域背景设为透明的也是在API中找了一通,才发现敢情就是setOpacity,呃,对这个单词实在是太不敏感了。。。。JTextArea->JTextPane 解决文字对齐方式的有关问题?

把在coderanch上搜的例子贴在这里吧,以防以后忘了:

?

JTextArea->JTextPane 解决文字对齐方式的有关问题import?java.awt.*;??
JTextArea->JTextPane 解决文字对齐方式的有关问题import?javax.swing.*;??
JTextArea->JTextPane 解决文字对齐方式的有关问题import?javax.swing.text.*;??
JTextArea->JTextPane 解决文字对齐方式的有关问题???
JTextArea->JTextPane 解决文字对齐方式的有关问题public?class?Styling??
JTextArea->JTextPane 解决文字对齐方式的有关问题{??
JTextArea->JTextPane 解决文字对齐方式的有关问题????public?Styling()??
JTextArea->JTextPane 解决文字对齐方式的有关问题????{??
JTextArea->JTextPane 解决文字对齐方式的有关问题????????String?text?=?"To?refer?to?locations?within?the?sequence,?the?"?+??
JTextArea->JTextPane 解决文字对齐方式的有关问题??????????????????????"coordinates?used?are?the?location?between?two?"?+??
JTextArea->JTextPane 解决文字对齐方式的有关问题??????????????????????"characters.\nAs?the?diagram?below?shows,?a?location?"?+??
JTextArea->JTextPane 解决文字对齐方式的有关问题??????????????????????"in?a?text?document?can?be?referred?to?as?a?position,?"?+??
JTextArea->JTextPane 解决文字对齐方式的有关问题??????????????????????"or?an?offset.?This?position?is?zero-based.";??
JTextArea->JTextPane 解决文字对齐方式的有关问题???
JTextArea->JTextPane 解决文字对齐方式的有关问题????????SimpleAttributeSet?aSet?=?new?SimpleAttributeSet();???
JTextArea->JTextPane 解决文字对齐方式的有关问题????????StyleConstants.setForeground(aSet,?Color.blue);??
JTextArea->JTextPane 解决文字对齐方式的有关问题????????StyleConstants.setBackground(aSet,?Color.orange);??
JTextArea->JTextPane 解决文字对齐方式的有关问题????????StyleConstants.setFontFamily(aSet,?"lucida?bright?italic");??
JTextArea->JTextPane 解决文字对齐方式的有关问题????????StyleConstants.setFontSize(aSet,?18);??
JTextArea->JTextPane 解决文字对齐方式的有关问题???
JTextArea->JTextPane 解决文字对齐方式的有关问题????????SimpleAttributeSet?bSet?=?new?SimpleAttributeSet();??
JTextArea->JTextPane 解决文字对齐方式的有关问题????????StyleConstants.setAlignment(bSet,?StyleConstants.ALIGN_CENTER);??
JTextArea->JTextPane 解决文字对齐方式的有关问题????????StyleConstants.setUnderline(bSet,?true);??
JTextArea->JTextPane 解决文字对齐方式的有关问题????????StyleConstants.setFontFamily(bSet,?"lucida?typewriter?bold");??
JTextArea->JTextPane 解决文字对齐方式的有关问题????????StyleConstants.setFontSize(bSet,?24);??
JTextArea->JTextPane 解决文字对齐方式的有关问题???
JTextArea->JTextPane 解决文字对齐方式的有关问题????????JTextPane?textPane?=?new?JTextPane();??
JTextArea->JTextPane 解决文字对齐方式的有关问题????????textPane.setText(text);??
JTextArea->JTextPane 解决文字对齐方式的有关问题????????StyledDocument?doc?=?textPane.getStyledDocument();??
JTextArea->JTextPane 解决文字对齐方式的有关问题????????doc.setCharacterAttributes(105,?doc.getLength()-105,?aSet,?false);??
JTextArea->JTextPane 解决文字对齐方式的有关问题????????doc.setParagraphAttributes(0,?104,?bSet,?false);??
JTextArea->JTextPane 解决文字对齐方式的有关问题???
JTextArea->JTextPane 解决文字对齐方式的有关问题????????JFrame?f?=?new?JFrame();??
JTextArea->JTextPane 解决文字对齐方式的有关问题????????f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);??
JTextArea->JTextPane 解决文字对齐方式的有关问题????????f.add(new?JScrollPane(textPane));??
JTextArea->JTextPane 解决文字对齐方式的有关问题????????f.setSize(400,400);??
JTextArea->JTextPane 解决文字对齐方式的有关问题????????f.setLocation(200,200);??
JTextArea->JTextPane 解决文字对齐方式的有关问题????????f.setVisible(true);??
JTextArea->JTextPane 解决文字对齐方式的有关问题????}??
JTextArea->JTextPane 解决文字对齐方式的有关问题???
JTextArea->JTextPane 解决文字对齐方式的有关问题????public?static?void?main(String[]?args)??
JTextArea->JTextPane 解决文字对齐方式的有关问题????{??
JTextArea->JTextPane 解决文字对齐方式的有关问题????????new?Styling();??
JTextArea->JTextPane 解决文字对齐方式的有关问题????}??
JTextArea->JTextPane 解决文字对齐方式的有关问题}??

热点排行