|
More site info...
|
|
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.
|
|
|
|
|
Posting activity on Java:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
50
|
492
|
1,833
|
|
Post:
|
91
|
1,128
|
4,616
|
|
|
Java Posting activity graph:
|
Top authors during last week:
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?
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.
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.
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 ..
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...
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...
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]
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
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...
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::
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.
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.
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 ...
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);
}
...
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...
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...
|
|
Hot threads for last week on 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.
...
Started 1 week, 1 day ago (2009-12-25 10:52:16)
by evstevemd
Thanks Peter!
I'm digging that, and will be back
Started 1 week ago (2009-12-27 00:00:00)
by EdwardS
I would recommend "JAVA How to program" - Deitel.
Good luck.
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.
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.
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.
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.
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 ...
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.
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.
|
|