这里面包含了一百多个JAVA源文件

源代码在线查看: e308. adding an attribute to a string.txt

软件大小: 551 K
上传用户: maple_78
关键词: JAVA
下载地址: 免注册下载 普通下载 VIP

相关代码

				Some applications need to mark a range of characters in a string with an attribute, such as a color. The AttributedString class is a wrapper for a string that provides support for marking ranges of characters with an attribute. An attribute consists of a name, a value, and a contiguous range of characters on which the attribute applies. 
				This example marks a word in a string with the attribute called color and the value red. 
				
				    // Declare an attribute name.
				    // An attribute name is an object that extends AttributedCharacterIterator.Attribute.
				    // Author's note: A more appropriate name would be AttributedCharacterIterator.AttributeName
				    static final AttributedCharacterIterator.Attribute COLOR
				        = new AttributedCharacterIterator.Attribute("color") {
				        };
				
				    // Create the attributed string
				    AttributedString astr = new AttributedString("the hot pot");
				    
				    // Add the COLOR attribute on the word `hot'
				    astr.addAttribute(COLOR, "Red", 4, 7);
				
							

相关资源