Software Information



Articles Main Page | Main Site Home Page





Text Ad's by TextAdPro.com
Make Money For Real doing nothing - 3 ways to profit - EZmatic.com.

ThatsNeato.com - That's Neato!

Home Business Money Making - How to make money on the net.

2coolhair.com - Over 5,000 Hairstyles Pitcures.



String in Java


Handling character strings in Java is supported through two final classes: String and StringBuffer. The String class implements immutable character strings, which are read-only once the string has been created and initialized, whereas the StringBuffer class implements dynamic character strings. All string literals in Java programs, are implemented as instances of String class. Strings in Java are 16-bit Unicode.

Note : In JDK 1.5+ you can use StringBuilder, which works exactly like StringBuffer, but it is faster and not thread-safe

The easiest way of creating a String object is using a string literal:

String str1 = "I cant be changed once created!";

A string literal is a reference to a String object. Since a string literal is a reference, it can be manipulated like any other String reference. i.e. it can be used to invoke methods of String class.

For example,

Int myLength = "Hello world".length();

The Java language provides special support for the string concatenation operator ( + ), which has been overloaded for Strings objects. String concatenation is implemented through the StringBuffer class and its append method.

For example,

String finalString = "Hello" + "World"

Would be executed as

String finalString = new StringBuffer().append("Hello").append("World").toString();

The Java compiler optimizes handling of string literals. Only one String object is shared by all string having same character sequence. Such strings are said to be interned, meaning that they share a unique String object. The String class maintains a private pool where such strings are interned.

For example,

String str1="Hello";

String str2="Hello";

If(str1 == str2)

System.out.println("Equal");

Would print Equal when run.

Since the String objects are immutable. Any operation performed on one String reference will never have any effect on other references denoting the same object.

Constructors

String class provides various types of constructors to create String objects. Some of them are,

String()

Creates a new String object whose content is empty i.e. "".

String(String s)

Creates a new String object whose content is same as the String object passed as an argument.

Note: Constructor creates a new string means it does not intern the String. Interned String object reference can be obtained by using intern() method of the String class

String also provides constructors that take byte and char array as argument and returns String object.

String equality

String class overrides the equals() method of the Object class. It compares the content of the two string object and returns the boolean value accordingly.

For example,

String str1="Hello";

String str2="Hello";

String str3=new String("Hello") //Using constructor.

If(str1 == str2)

System.out.println("Equal 1");

Else

System.out.println("Not Equal 1");

If(str1 == str3)

System.out.println("Equal 2");

Else

System.out.println("I am constructed using constructor, hence

not interned");

If( str1.equals(str3) )

System.out.println("Equal 3");

Else

System.out.println("Not Equal 3");

The output would be,

Equal 1

Not Equal 2

Equal 3

Note that == compares the references not the actual contents of the String object; Where as equals method compares actual contents of two String objects.

String class also provides another method equalsIgnoreCase() which ignores the case of contents while comparing.

Apart from these methods String class also provides compareTo methods.

int compareTo(String str2)

This method compares two Strings and returns an int value. It returns value 0, if this string is equal to the string argument a value less than 0, if this string is less than the string argument

a value greater than 0, if this string is greater than the string argument

int compareTo(Object object)

This method behaves exactly like the first method if the argument object is actually a String object; otherwise, it throws a ClassCastException.

String Manipulations

Reading characters from String:

char charAt(index i)

Returns char at specified index. An index ranges from 0 to length() -1.

Searching characters in String

String class provides indexOf method which searches for the specified character inside the string object. This method has been overloaded. If the search is successful, then it returns the index of the char otherwise -1 is returned.

int indexOf(int c)

Returns the index of first occurrence of the argument char.

int indexOf(int c, int fromIndex)

Finds the index of the first occurrence of the argument character in a string, starting at the index specified in the second argument.

int indexOf(String str)

Finds the start index of the first occurrence of the substring argument in a String.

int indexOf(String str, int fromIndex)

Finds the start index of the first occurrence of the substring argument in a String, starting at the index specified in the second argument.

The String class also provides methods to search for a character or string in backward direction. These methods are given below.

int lastIndexOf(int ch)

int lastIndexOf(int ch, int fromIndex)

int lastIndexOf(String str)

int lastIndexOf(String str, int fromIndex)

Replacing characters in String

The replace method of String can be used to replace all occurrences of the specified character with given character.

String replace(char oldChar, int newchar)

Getting substrings

String class provides substring method to extract specified portion of the given String. This method has been overloaded.

String substring(int startIndex)

String substring(int startIndex, int endIndex)

Note: A new String object containing the substring is created and returned. The original String won't be affected.

If the index value is not valid, a StringIndexOutOfBoundsException is thrown.

Conversions

String class provides set of static overloaded valueOf method to convert primitives and object into strings.

static String valueOf(Object obj)

static String valueOf(char[] character)

static String valueOf(boolean b)

static String valueOf(char c)

static String valueOf(int i)

static String valueOf(long l)

static String valueOf(float f)

static String valueOf(double d)

Manipulating Character Case

String class provides following methods to manipulate character case in String.

String toUpperCase()

String toUpperCase(Locale locale)

String toLowerCase()

String toLowerCase(Locale locale)

Note : Original String object is returned if none of the characters changed, otherwise new String object is constructed and returned.

Miscellaneous methods

String trim()

This method removes white space from the front and the end of a String.

int length()

Returns length of the String.

String intern()

This method returns interned String object, if already present in the String pool. Otherwise this String is added into the pool, and then interned reference is returned.

Rahim Vindhani
Application Develper [Application Development & Webservices]
IBM Global Services, pune, India
email: rahim.vindhani@gmail.com
web: http://www.rahim.co.nr


MORE RESOURCES:
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/0-0fd=Rurl=http://online.wsj.com/article/SB122840422009579487.html%3Fmod%3Dgooglenews_wsjcid=1277452365ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNFjJaGKeqw_lYCzX5FPVEK19vDfoAJDA bSoftware/b, i2 Scrap Merger/abrfont size=-1font color=#6f6f6fWall Street Journalnbsp;-/font nobr2 hours ago/nobr/fontbrfont size=-1By KERRY E. GRACE I2 Technologies Inc. ended its planned $346 million sale to JDA bSoftware/b Group Inc., under which the two supply-chain bsoftware/b companies b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/0-1fd=Rurl=http://www.reuters.com/article/mergersNews/idUSBNG30148820081204cid=1277452365ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNG_3C__E_95YELSj46K66SQ4enrUAUPDATE 1-I2 Technologies ends merger deal with JDA bSoftware/b/a font size=-1 color=#6f6f6fnobrReuters/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/0-2fd=Rurl=http://www.bizjournals.com/dallas/stories/2008/12/01/daily43.htmlcid=1277452365ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNHUXF3vHAkuM7x9sennt77tptlG_gi2 Technologies: No sale to JDA bSoftware/b/a font size=-1 color=#6f6f6fnobrBizjournals.com/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/0-3fd=Rurl=http://blogs.barrons.com/techtraderdaily/2008/12/04/i2-shrs-tumble-20-sale-to-jda-software-terminated/cid=1277452365ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNHvLBBUSvgEQujysFGKP3H_H-UB5gi2 Shrs Tumble 20%; Sale To JDA bSoftware/b Terminated/a font size=-1 color=#6f6f6fnobrBarron's Blogs/nobr/font/fontbrfont size=-1 class=pa href=http://news.google.com/news/url?sa=Tct=us/0-4fd=Rurl=http://newsticker.welt.de/index.php%3Fchannel%3Dfin%26module%3Dsmarthouse%26id%3D819028cid=1277452365ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNEd-QOi9mJ56tpYUV91ALdPECHSygnobrWELT ONLINE/nobr/anbsp;- a href=http://news.google.com/news/url?sa=Tct=us/0-5fd=Rurl=http://www.dallasnews.com/sharedcontent/dws/bus/stories/120508dnbusjdai2.2d693dad.htmlcid=1277452365ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNE5EzEyxm1-B0GbYpjtY7huwscwAwnobrDallas Morning News/nobr/a/fontbr/font class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1277452365hl=ennobrall 27 news articles/nobr/a/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://news.google.com/news/url?sa=Tct=us/1i-0fd=Rurl=http://news.cnet.com/8301-10805_3-10112904-75.htmlcid=1277436405ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNHBhBqvzU4Bc4RhjcjuRb_-XgGxFAimg src=http://news.google.com/news?imgefp=HBRLgL3DerAJimgurl=news.cnet.com/i/bto/20081203/blue_2_270x284.JPG width=76 height=80 alt= border=1brfont size=-2CNET News/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/1-0fd=Rurl=http://www.crn.com/software/212201891cid=1277436405ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNGV86jXsyP-lCVv8b8G5N19kQVh-AMicrosoft Warns Against Fake #39;Blue Edition#39; bSoftware/b/abrfont size=-1font color=#6f6f6fCRN,nbsp;NYnbsp;-/font nobr1 hour ago/nobr/fontbrfont size=-1Microsoft said it has been receiving complaints from unsuspecting customers having been stung after buying counterfeit Windows XP bsoftware/b and quot;illicit b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/1-1fd=Rurl=http://www.sfgate.com/cgi-bin/blogs/sfgate/detail%3Fblogid%3D19%26entry_id%3D33206cid=1277436405ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNFzNIyycuR0ViaxeyYMWRg3PUsypAMicrosoft goes after bsoftware/b pirates/a font size=-1 color=#6f6f6fnobrSan Francisco Chronicle/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/1-2fd=Rurl=http://www.computerworld.com/action/article.do%3Fcommand%3DviewArticleBasic%26articleId%3D9122479%26intsrc%3Dnews_ts_headcid=1277436405ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNEpETc_dLDegJqIhH0DMZhlGenDYQMicrosoft targets Blue Edition#39; bsoftware/b sales scams/a font size=-1 color=#6f6f6fnobrComputerworld/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/1-3fd=Rurl=http://www.techflash.com/microsoft/New_Microsoft_piracy_case_targets_bogus_Blue_Edition_software35512684.htmlcid=1277436405ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNH0skPWSvDoOnBShDgZbX5gaY6mlANew Microsoft piracy case targets bogus ‘Blue Edition’ bsoftware/b/a font size=-1 color=#6f6f6fnobrTechFlash/nobr/font/fontbrfont size=-1 class=pa href=http://news.google.com/news/url?sa=Tct=us/1-4fd=Rurl=http://uk.sys-con.com/node/767835cid=1277436405ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNGehJD8-kHf6HcKHl5_GdSGjquLLQnobrSYS-CON Media/nobr/anbsp;- a href=http://news.google.com/news/url?sa=Tct=us/1-5fd=Rurl=http://seattlepi.nwsource.com/business/390552_msftpiracy04.htmlcid=1277436405ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNFbyo8_bT29CjJMDPRlodMAr8AOHwnobrSeattle Post Intelligencer/nobr/a/fontbr/font class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1277436405hl=ennobrall 32 news articles/nobr/a/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/2-0fd=Rurl=http://www.marketwatch.com/news/story/WorkForce-Software-Host-its-First/story.aspx%3Fguid%3D%257B48B209E3-58EF-4A15-A6CA-BF0854FDE997%257Dcid=1277502452ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNHjzKi5E3yhtMLSKs6chfXHhKAWhAWorkForce bSoftware/b to Host its First Annual Career Fair in Michigan/abrfont size=-1font color=#6f6f6fMarketWatchnbsp;-/font nobr1 hour ago/nobr/fontbrfont size=-1Due to our rapid expansion, we are hiring for several positions within our bsoftware/b development and implementation departments. b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/2-1fd=Rurl=http://www.marketwatch.com/news/story/WorkForce-Software-Delivers-430-ROI/story.aspx%3Fguid%3D%257B4238B00B-C8BF-4D69-AA1B-DA091D0FAD62%257Dcid=1277502452ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNFBO1dZ4Omr4AL-nfy3SFpveG-q8AWorkForce bSoftware/b Delivers 430% ROI for University with EmpCenter/a font size=-1 color=#6f6f6fnobrMarketWatch/nobr/font/fontbrfont class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1277502452hl=ennobrall 9 news articles/nobr/a/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/3-0fd=Rurl=http://www.marketwatch.com/news/story/Everest-Software-Partners-Foxfire-Offer/story.aspx%3Fguid%3D%257B092D7510-C1DD-4358-989F-CEB7B9B6375F%257Dcid=1277511233ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNG2L1kuxuVQfpAVyV1n4yoEzVjKqAEverest bSoftware/b Partners with Foxfire to Offer Integrated b.../b/abrfont size=-1font color=#6f6f6fMarketWatchnbsp;-/font nobr1 hour ago/nobr/fontbrfont size=-1The partnership creates a powerful integrated bsoftware/b product suite that includes ecommerce, point of sale, accounting, and real-time inventory and b.../b/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://news.google.com/news/url?sa=Tct=us/4i-0fd=Rurl=http://www.dbtechno.com/computers/2008/12/04/apple-erases-tip-on-antivirus-programs-for-mac-os-x/cid=1276552788ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNE77zR9xd1g7x-6qpaLaqL4S7sTTAimg src=http://news.google.com/news?imgefp=S6q-kMHtdqsJimgurl=www.dbtechno.com/images/Apple_OS_X_antivirus.jpg width=80 height=80 alt= border=1brfont size=-2dBTechno/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/4-0fd=Rurl=http://computerworld.com/action/article.do%3Fcommand%3DviewArticleBasic%26articleId%3D9122359cid=1276552788ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNFp5VSDIXvZKToE2Dlr7owJ6ulERgApple yanks antivirus advice from its Web site/abrfont size=-1font color=#6f6f6fComputerworld,nbsp;MAnbsp;-/font nobr3 hours ago/nobr/fontbrfont size=-1quot;The Mac is designed with built-in technologies that provide protection against malicious bsoftware/b and security threats right out of the box,quot; he went on. b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/4-1fd=Rurl=http://www.informationweek.com/news/hardware/mac/showArticle.jhtml%3FarticleID%3D212201455%26subSection%3DNewscid=1276552788ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNESDYJwP81KJ-0oxVqX-hRQLUmvCAApple Recommends Antivirus bSoftware/b For Mac OS X/a font size=-1 color=#6f6f6fnobrInformationWeek/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/4-2fd=Rurl=http://blog.wired.com/business/2008/12/apple-on-the-ne.htmlcid=1276552788ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNFffoGzHfmztnJAF4aLyCDg0cbUwQApple on the Need for Anti-Virus bSoftware/b: Now You Do, Now You Don#39;t/a font size=-1 color=#6f6f6fnobrWired News/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/4-3fd=Rurl=http://news.cnet.com/8301-1009_3-10110852-83.htmlcid=1276552788ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNGtg-C306g3DTgzS0sXAWyzxPc29AApple suggests Mac users Install antivirus bsoftware/b/a font size=-1 color=#6f6f6fnobrCNET News/nobr/font/fontbrfont size=-1 class=pa href=http://news.google.com/news/url?sa=Tct=us/4-4fd=Rurl=http://www.toptechnews.com/story.xhtml%3Fstory_id%3D0030003Q2LU6cid=1276552788ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNGdTTrL-jK13yb2Z9EMQsVsWgq1EgnobrCIO Today/nobr/anbsp;- a href=http://news.google.com/news/url?sa=Tct=us/4-5fd=Rurl=http://www.businessweek.com/magazine/content/08_50/b4112084938245.htm%3Fchan%3Dtechnology_tech%2Bmaven%2Bpage%2B-%2Bnew_this%2Bweek%27s%2Bcolumncid=1276552788ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNEnli2U_nQW2ba_fxRiZkJIoKJ5twnobrBusinessWeek/nobr/a/fontbr/font class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1276552788hl=ennobrall 250 news articles/nobr/a/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/5-0fd=Rurl=http://www.marketwatch.com/news/story/Insight-Distribution-Software-Announces-Advanced/story.aspx%3Fguid%3D%257BEA529B5C-8845-470E-B3B6-26488038BA9D%257Dcid=1277531206ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNHBpv11nx18yfh7PqgZG4bi7G7qGQInsight Distribution bSoftware/b Announces Advanced Route Accounting b.../b/abrfont size=-1font color=#6f6f6fMarketWatchnbsp;-/font nobr35 minutes ago/nobr/fontbrfont size=-1PORTLAND, Ore., Dec 04, 2008 (BUSINESS WIRE) -- Insight Distribution bSoftware/b, a leading provider of supply chain bsoftware/b solutions for the beverage and b.../b/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/6-0fd=Rurl=http://www.marketwatch.com/news/story/FOX-Systems-Relies-Robust-Neocase/story.aspx%3Fguid%3D%257B2B1D87CC-52EE-47CD-849A-9C4D52B3DB32%257Dcid=1277479348ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNFqPI7pG9j3VSU9HlqkjN8b8O97ugFOX Systems Relies on Robust Neocase bSoftware#39;s/b Solutions for b.../b/abrfont size=-1font color=#6f6f6fMarketWatchnbsp;-/font nobr3 hours ago/nobr/fontbrfont size=-1SAN FRANCISCO, Dec 04, 2008 (BUSINESS WIRE) -- Neocase bSoftware/b, a leading provider of customer service solutions for shared service centers and customer b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/6-1fd=Rurl=http://www.zdnetasia.com/toptech/2008/0,3800017271,62048725,00.htmcid=1277479348ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNHxBg0eWeZT16d3BMUadWTyVEG_xQSiemens IT Solutions and Services/a font size=-1 color=#6f6f6fnobrZDNet Asia/nobr/font/fontbrfont class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1277479348hl=ennobrall 12 news articles/nobr/a/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/7-0fd=Rurl=http://www.marketwatch.com/news/story/AVG-Named-Spicies-Award-Winner/story.aspx%3Fguid%3D%257B2BE49DE2-DF59-40AC-B4FA-7FB27CFBB10A%257Dcid=1277469304ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNERT7dCO1HEmfl-0nJ-uX2WKNPIygAVG Named #39;Spicies Award#39; Winner for Top Anti-Virus bSoftware/b for b.../b/abrfont size=-1font color=#6f6f6fMarketWatchnbsp;-/font nobr4 hours ago/nobr/fontbrfont size=-1AMSTERDAM, Netherlands, Dec 04, 2008 /PRNewswire via COMTEX/ -- AVG Technologies today announced that its anti-virus bsoftware/b was voted a winner in the 2008 b.../b/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://news.google.com/news/url?sa=Tct=us/8i-0fd=Rurl=http://www.pcmag-mideast.com/NewsDetail.aspx%3FID%3D2365cid=1276830944ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNFZkovhc1jawGeWXqMFiWR8pfULJwimg src=http://news.google.com/news?imgefp=x38-KaasfAIJimgurl=www.pcmag-mideast.com/images/News/News2365_1.jpg width=80 height=49 alt= border=1brfont size=-2PC Magazine Middle amp; Near East/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/8-0fd=Rurl=http://www.newsoxy.com/nokia/article11423.htmlcid=1276830944ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNHonJw0i8fpc7eptULB70WT2FBD2QNokia Buys Mobile bSoftware/b Firm Symbian/abrfont size=-1font color=#6f6f6fNewsOXY,nbsp;FLnbsp;-/font nobr3 hours ago/nobr/fontbrfont size=-1By Rob Adams Nokia has purchased mobile bsoftware/b company Symbian Foundation. Employees are expected to join Nokia in February 2009. b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/8-1fd=Rurl=http://arstechnica.com/news.ars/post/20081203-nokias-oss-strategy-gets-boost-as-symbian-deal-completed.htmlcid=1276830944ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNHtRjPR5Bwf1oCy0-F4QU_k4debZQNokia#39;s OSS strategy gets boost as Symbian deal completed/a font size=-1 color=#6f6f6fnobrArs Technica/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/8-2fd=Rurl=http://www.marketwatch.com/news/story/Maximizer-Mobile-CRM-Now-Available/story.aspx%3Fguid%3D%257B70A6A2F1-F4D8-431B-8363-B63B615EA94C%257Dcid=1276830944ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNEl9kJqsLXhqA4pGCUwjoWzLiPYGAMaximizer Mobile CRM Now Available for Nokia-The Global Leader in b.../b/a font size=-1 color=#6f6f6fnobrMarketWatch/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/8-3fd=Rurl=http://call-center-software.tmcnet.com/topics/call-center-software/articles/46573-maximizer-crm-maximizes-reach-with-symbian-os-deal.htmcid=1276830944ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNEkAzAoxXshij8YYxo67V3tKeMykgMaximizer CRM Maximizes Reach with Symbian OS Deal/a font size=-1 color=#6f6f6fnobrTMCnet/nobr/font/fontbrfont size=-1 class=pa href=http://news.google.com/news/url?sa=Tct=us/8-4fd=Rurl=http://www.straitstimes.com/Breaking%252BNews/Tech%252Band%252BScience/Story/STIStory_309486.htmlcid=1276830944ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNFB7-EFBoimLboOZyneQug4AIcDvAnobrStraits Times/nobr/anbsp;- a href=http://news.google.com/news/url?sa=Tct=us/8-5fd=Rurl=http://www.tgdaily.com/content/view/40412/118/cid=1276830944ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNEkYl2GP-HZxlHlbFoxS9esW6U1HwnobrTG Daily/nobr/a/fontbr/font class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1276830944hl=ennobrall 80 news articles/nobr/a/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/9-0fd=Rurl=http://www.marketwatch.com/news/story/COPsync-Software-Called-Upon-Secure/story.aspx%3Fguid%3D%257B48C6262C-791C-4794-B854-201DAC79CB66%257Dcid=1277257809ei=mxw4ScXtAZnK8ASw7YyfDwusg=AFQjCNHUSQUJRLc_N93DCla4OO5k0lHYgwCOPsync bSoftware/b Called Upon to Secure the Texas State Border/abrfont size=-1font color=#6f6f6fMarketWatchnbsp;-/font nobr21 hours ago/nobr/fontbrfont size=-1a bsoftware/b technology provider to law enforcement and emergency service professionals, is pleased to announce that the State of Texas, Division of Emergency b.../b/font/div/font/td/tr/table

Software - Google News




Articles Home Page | Site Map | Main Site Home Page
GETsonic | TrafficFish | WildThingsDesigns | NeatoDomains.com | Games | Ken J Wagner | iNetcome

© 2008