The Artima Developer Community
Sponsored Link

Java Answers Forum
Displayin an integer in an applet

4 replies on 1 page. Most recent reply: Sep 25, 2003 8:28 AM by mausam

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 4 replies on 1 page
Hope Mkhumba

Posts: 3
Nickname: hoplex
Registered: Sep, 2003

Displayin an integer in an applet Posted: Sep 25, 2003 8:05 AM
Reply to this message Reply
Advertisement
I'm a new student to java. Can somebody tell how I can combine text + a variable which is and integer. I want to display themin one line

Thank you in advance


mausam

Posts: 243
Nickname: mausam
Registered: Sep, 2003

Re: Displayin an integer in an applet Posted: Sep 25, 2003 8:18 AM
Reply to this message Reply
Means???

If you want to store a value of String +Integer in a String simply add them..
		String str = "Who is Amin?He is number ";
		Integer intgr = new Integer(1);
		
		String disp = str+intgr;
		
		System.out.println(disp);
 


But i am sure u must be needing something else..(becuase this is too easy...)
if this was not what u were looking for mail ur problem in detatil... :)

Hope Mkhumba

Posts: 3
Nickname: hoplex
Registered: Sep, 2003

Re: Displayin an integer in an applet Posted: Sep 25, 2003 8:23 AM
Reply to this message Reply
Is there a way I can use drawString class. The integer I need to add is a randon number which will change. I have read books but they mainly explain writing text rather variable integers

Hope Mkhumba

Posts: 3
Nickname: hoplex
Registered: Sep, 2003

Re: Displayin an integer in an applet Posted: Sep 25, 2003 8:26 AM
Reply to this message Reply
Thanx I got it.

mausam

Posts: 243
Nickname: mausam
Registered: Sep, 2003

Re: Displayin an integer in an applet Posted: Sep 25, 2003 8:28 AM
Reply to this message Reply
Cheeers !!!

Thats the way to learn.......

Flat View: This topic has 4 replies on 1 page
Topic: Changing background row colour of JTree Previous Topic   Next Topic Topic: Applet won't run!!! Need help!

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use