Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

Java | Forum profile

Forum profile page for Java on http://www.daniweb.com. This report page is the aggregated overview from a single forum: Java, located on the Message Board at http://www.daniweb.com. This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional forum profile information for "Java" on the Message Board at http://www.daniweb.com is also shown in the following ways:

1) Latest Active Threads
2) Hot Threads for Last Week

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.

Site: www.daniweb.com - IT Tech Talk - Java (site profile, domain info daniweb.com)
Title: Java
Url: http://www.daniweb.com/forums/forum9.html
Users activity: 25 posts per thread
Forum activity: 50 active threads during last week
 

Posting activity on Java:

  Week Month 3 Months
Threads: 50 492 1,833
Post: 91 1,128 4,616
 

Java Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
peter_budo
22
user's latest post:
Problem with Java Frames:(
Published (2009-12-28 15:12:32)
What is the point in creating multiple frames when you can simply change content and actual parameters of single frame as need it?
JamesCherrill
5
user's latest post:
Help - Swing and Mouse...
Published (2009-12-28 14:12:19)
Use java.awt.MouseInfo That gives you MouseInfo.getPointerInfo().getLocation().x and MouseInfo.getPointerInfo().getLocation(). y You can use a swing Timer ( http://java.sun.com/docs/books/tutor...isc/timer.html )to run a method at regular intervals.In that method use MouseInfo to get the coords, then put them in a String that you use to set the text of the JLabel.
cam875
4
user's latest post:
send image over UDP problem
Published (2009-12-24 00:00:00)
try simply creating a byte array or something and send it over using UDP to the client, that way you can tell if the problem is the way you are getting the image or if it is in the network code. Just break the problem up. Also it looked like you were using port 80 to send and receive the data, I am not an expert and don't really know if it causes a problem but I would stay away from using the HTTP port which is 80.
M.S.A 
3
user's latest post:
Problem with reading file and...
Published (2009-12-24 00:00:00)
I did that by deleting the 1st line, 2nd line ..... till 5th line .. but the results were still the same .. I'm wounding if there is wrong in the way of reading file in my codes .. !! and yeah I printed the result as the file is being read but the ?? were in the result ..
roswell67
3
user's latest post:
Beginner's Runtime Error
Published (2009-12-25 00:00:00)
Exception in thread "main" java.lang.NoClassDefFoundError: test2.class at gnu.java.lang.MainThread.run(libgcj.so.90) Caused by: java.lang.ClassNotFoundException: test2.class not found in gnu.gcj.runtime.SystemClassLoader{urls=[file:./], parent=gnu.gcj.runtime.ExtensionClassLoader{urls=[], parent=null}} at java.net.URLClassLoader.findClass(libgcj.so.90) at gnu.gcj.runtime.SystemClassLoader.findClass(libgcj.so.90) at...
gunjannigam
3
user's latest post:
An Error in my code
Published (2009-12-25 08:52:29)
• • • • Originally Posted by JAbeer Help with Code Tags Java Syntax ( Toggle Plain Text ) import javax.swing.*; import java.awt.*; import java.awt.event.*; public class cal extends JFrame implements ActionListener { JMenuBar mb; JMenu file, help; JMenuItem esc, about; JButton btn [ ] ; JLabel lab1 = new JLabel ( "0" ) ; JPanel pan1; int i; final int...
MxDev
3
user's latest post:
Some images are not showing when...
Published (2009-12-28 16:17:06)
Hi, I've faced something like this before, but on a different area I think you should check the image references in netBeans or try to load it again using netBeans itself. I hope this benefits you, happy coding. [EL-Prince]
evstevemd
3
user's latest post:
Layout Management
Published (2009-12-27 00:00:00)
can you elaborate a little bit in new bee's terms? I find Gridbag a little confusing. Java layout is a bit convoluted though
stephen84s
2
user's latest post:
Beginner's Runtime Error
Published (2009-12-25 19:52:03)
• • • • First of all, I actually am using the javac compiler. 'javac' is not a compiler, it is a command/executable which comes with all compiler implementations for java for compiling your source code. So irrespective of whether you are using the JDK from BEA, IBM, Sun, GCJ, Oracle etc most of them should give you a javac executable to compile your source code. Since I guess you are on Linux, so...
SoulMazer
2
user's latest post:
Beginner's Runtime Error
Published (2009-12-25 21:52:03)
Thanks peter, you solved my immediate problem. However, thank you stephen for the amazingly informative post. I'll definitely have to go over the style guides you linked me to. Anyways, when I try a "javac -version", I am informed that I am running the "Eclipse Java Compiler 0.894_R34x, 3.4.2 release". Would you recommend that I use a different compiler? If so, how would I go about doing that. Also,...
 

Latest active threads on Java::

www.daniweb.com - IT Tech Talk
Started 5 days, 9 hours ago (2009-12-28 14:12:06)  by Acegikmo
Thanks for the reply! Every image file is using lower-case characters though, so that can't be the problem.
Thread:  Show this thread (4 posts)   Thread info: Some images are not showing when I start my game through the jar file Size: 241 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Some images are not showing when I start my game through the jar file :: Java :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 5 days, 9 hours ago (2009-12-28 14:12:32)  by rpraveenr
hey thanx 4 ur reply. But I want to crreate separate forms for each window and then call those forms on action events of a button. I can create panels with different content then all the coding will required to be done in same form. Pls help me wid this... thankyou.
Thread:  Show this thread (4 posts)   Thread info: Problem with Java Frames:( Size: 401 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Problem with Java Frames:( :: Java :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 5 days, 7 hours ago (2009-12-28 16:12:19)  by MxDev
Hi, Hey jorgelex008 here's I'm going to attach 2 codes. The first one is to know if the mouse entered the component or not. I tried this before java doesn't have any methods to know the coordinates outside the component, if you want to accomplish this you can create a transparent window and then retrieve screen coordinates on mouse click. Here's the code Help with Code ...
Thread:  Show this thread (2 posts)   Thread info: Help - Swing and Mouse Coordinates in Label Size: 25 kb
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Help - Swing and Mouse Coordinates in Label :: Java :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 3 years, 9 months ago (2006-03-23 00:00:00)  by msaqib
In class calcPanel2 you can handle all the button click events. Here is a simple example that when the user will click on the * button then it will multiply the two values. First of all add the action listner to the Star button. //For getting the mouse click Star.addMouseListener(new java.awt.event.MouseAdapter() { public void mouseClicked(MouseEvent e) { ok_mouseClicked(e); } ...
Thread:  Show this thread (3 posts)   Thread info: Calculator GUI - Java Size: 1,218 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Calculator GUI :: Java :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 5 days, 14 hours ago (2009-12-28 09:13:49)  by peter_budo
• • • • Originally Posted by divakar.durai How to discover the local area network in java? By reading above replies and not asking general questions...
Thread:  Show this thread (2 posts)   Thread info: Finding an IP address using Java (was: do u know?) Size: 844 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Finding an IP address using Java (was: do u know?) :: Java :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 1 week, 5 days ago (2009-12-22 00:00:00)  by P00dle
• • • • Originally Posted by BestJewSinceJC There are some sort of web services xml bindings for java, but it seems to me that you could just treat it as a plain text file, do a search for <JOBNAME> based on a regular expression, then do your editing and write everything back out to the file again. I've thought of that. Finding the job name would be really...
Thread:  Show this thread (9 posts)   Thread info: Java: Processing XML Size: 1,347 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Java: Processing XML :: Java :: www.daniweb.com - IT Tech Talk"
 

Hot threads for last week on Java::

Java
Started 1 week, 2 days ago (2009-12-25 00:00:00)  by stephen84s
• • • • So...I have just begun to whet my appetite for Java today, and I have already run into a stumbling block. If you have just begun Java, then I would strongly recommend using the JDK (Java Development Kit which includes the javac compiler and other stuff) directly available from Sun itself here , rather than going for third party compilers like the GCJ. ...
Thread:  Show this thread (6 posts)   Thread info: Beginner's Runtime Error Size: 1,031 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Beginner's Runtime Error :: Java :: www.daniweb.com - IT Tech Talk"
Java
Started 1 week, 1 day ago (2009-12-25 10:52:16)  by evstevemd
Thanks Peter! I'm digging that, and will be back
Thread:  Show this thread (6 posts)   Thread info: Layout Management Size: 182 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Layout Management :: Java :: www.daniweb.com - IT Tech Talk"
Java
Started 1 week ago (2009-12-27 00:00:00)  by EdwardS
I would recommend "JAVA How to program" - Deitel. Good luck.
Thread:  Show this thread (5 posts)   Thread info: beginner java book Size: 204 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: beginner java book :: Java :: www.daniweb.com - IT Tech Talk"
Java
Started 1 week, 3 days ago (2009-12-24 00:00:00)  by roswell67
I have a hunch it is a read error. As cam875 said, we cannot help you with what you gave us. Please provide us with more information, and also post the Customers.txt file so we'd confirm that it is not a read error.
Thread:  Show this thread (7 posts)   Thread info: Readind data from text file Size: 357 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Readind data from text file :: Java :: www.daniweb.com - IT Tech Talk"
Java
Started 5 days, 9 hours ago (2009-12-28 14:12:06)  by Acegikmo
Thanks for the reply! Every image file is using lower-case characters though, so that can't be the problem.
Thread:  Show this thread (4 posts)   Thread info: Some images are not showing when I start my game through the jar file Size: 241 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Some images are not showing when I start my game through the jar file :: Java :: www.daniweb.com - IT Tech Talk"
Java
Started 5 days, 9 hours ago (2009-12-28 14:12:32)  by rpraveenr
hey thanx 4 ur reply. But I want to crreate separate forms for each window and then call those forms on action events of a button. I can create panels with different content then all the coding will required to be done in same form. Pls help me wid this... thankyou.
Thread:  Show this thread (4 posts)   Thread info: Problem with Java Frames:( Size: 401 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Problem with Java Frames:( :: Java :: www.daniweb.com - IT Tech Talk"
Java
Started 1 week, 1 day ago (2009-12-25 18:51:25)  by startstop123
• • • • Originally Posted by peter_budo That is wrong approach, read here why Well, I'm just asking for an Idea of how to develop such an application like Java based or .Net Based? What may be the presentation layer and which Database can be used? These are the few basic ideas I like to know. Rest I can take care of.
Thread:  Show this thread (3 posts)   Thread info: Desktop Banking Application Size: 1,127 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Desktop Banking Application :: Java :: www.daniweb.com - IT Tech Talk"
Java
Started 1 week ago (2009-12-27 00:00:00)  by skfroi
I used to use Delphi too back when it was in version 5 / 6. Refresh my memory but with Delphi you could create a datasource element (or how many you'd need) in your project and assign specific datasource fields (table columns) to specific text boxes (GUI element). Once linked the text boxes would display the data of the current record of their linked column, also any changes would be ...
Thread:  Show this thread (3 posts)   Thread info: New to Java Programming - Binding Jtextfield to database Size: 658 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: New to Java Programming - Binding Jtextfield to database :: Java :: www.daniweb.com - IT Tech Talk"
Java
Started 1 week ago (2009-12-27 00:00:00)  by peter_budo
Please post your code otherwise you will get only general advice that may not be helpful.
Thread:  Show this thread (3 posts)   Thread info: Help for JList and JPopupMenu Size: 216 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Help for JList and JPopupMenu :: Java :: www.daniweb.com - IT Tech Talk"
Java
Started 1 week, 2 days ago (2009-12-25 00:00:00)  by Corrderio
Ahh I see, thanks. I'm usually use to tutorials giving out very simple code like I posted above, then afterwards having you expand on the code if it works.
Thread:  Show this thread (2 posts)   Thread info: "exception in thread "main" java.lang.NoSuchMeth odError: main" Help Size: 282 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: "exception in thread "main" java.lang.NoSuchMeth odError: main" Help :: Java :: www.daniweb.com - IT Tech Talk"