My account: Login | Sign Up
Loading...

Java Technology Forums - java.sun.com | Site profile

rss Atom  |   RSS
Site profile page for http://java.sun.com. This report page has aggregated and summarized the online discussions from the Message Board located at http://java.sun.com. This site profile page outlines general site statistics such as: Users Activity, Site Activity, Site Rank, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional site profile information for http://java.sun.com is also shown in the following divisions:

1) Top 10 Active Forums during Last Week
2) Top 10 Site Forums
3) Latest Active Threads
4) 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 site's popularity and/or exact posting volumes at any given reporting period.

Title: Java Technology Forums - http://java.sun.com Java Technology Forums
Url: http://java.sun.com
Users activity: 3 posts per thread
site activity: 0 active threads during last week
Site rank: 208,286 (go to rank page)
Domain info for: sun.com
 

Posting activity table on Java Technology Forums:

  Week Month 3 Months
Threads: 0 0 15,073
Post: 0 0 41,034
 

Authority Badge:

Java Technology Forums | Forum Authority Badge

Java Technology Forums posting activity graph:

Posts by:  day  week  month 
 

http://java.sun.com Alexa graph:

Top authors on Java Technology Forums during last week:

No active authors during last week.

 

Top 10 active forums on Java Technology Forums during last week:

No active forums during last week.

 

Top 10 forums on Java Technology Forums:

No Forums.

Latest active threads on Java Technology Forums:

Java Technology Forums
Started 1 month, 2 weeks ago (2008-07-12 14:15:00)  by ethicalhacker
Ive made a 3 level game. In the first 2 levels the game is a top view but in the third level I want it to be a platform view and I want the sprite to be able to fall throught blank black empty spaces and jump using the up button. How can I do thsi as of now the sprite just walks up and down the platform not walking on the platform To make things clear Im adding a link to a screenshot of the ...
Forum:  Java Game Development Java Game Development   - forum profile
Thread:  Show this thread (1 post) Size: 504 bytes
Customize:  Customize "how to make te sprite not walk over the platform :: Java Game Development   :: Java Technology Forums"
Java Technology Forums
Started 1 month, 2 weeks ago (2008-07-12 14:13:00)  by Mostafa_Shawky
Dear all, i face problem when tried to call stored procedure from sql 2005 by sql driver 1.2 when i call stored procedure it return 0 for any function for example: String userPhonrNumber = "{? = call getUserPhonrNumber (?)}" ; Connection con =db.getConnection(); statement = DataBaseAdapter.createCallableStatement ( con, userPhonrNumber); statement.registerOutParameter ( 1, Types....
Java Technology Forums
Started 1 month, 2 weeks ago (2008-07-12 01:08:00)  by d@ntonio
I downloaded the latest JMF and is installed correctly. I'm trying to run JpegImagesToMovie example with the proper parameters. I don't understand why I'm getting the following error: - create processor for the image datasource ... Setting the track format to: JPEG - create DataSink for: C:\??\??\??\out.mov Cannot create the DataSink: javax.media.NoDataSinkException: Cannot find a ...
Forum:  Java Media Framework Java Media Framework   - forum profile
Thread:  Show this thread (4 posts) Size: 642 bytes
Customize:  Customize "JpegImagesToMovie :: Java Media Framework   :: Java Technology Forums"
Java Technology Forums
Started 1 month, 3 weeks ago (2008-07-10 14:52:00)  by Manthana
Hi all, I have a doubt like , is there a way to stop a thread by the user which is blocked on an I/O operation. Thank you
Forum:  Java Programming Java Programming   - forum profile
Thread:  Show this thread (12 posts) Size: 180 bytes
Customize:  Customize "Stop a Thread :: Java Programming   :: Java Technology Forums"
Java Technology Forums
Started 1 month, 3 weeks ago (2008-07-10 14:50:00)  by me_right_now
Hey everybody, I am having some problems with control other Java applications with an application that I have. Here it is: I want to run a Java application (from a batch file) using Runtime.exec, and I want to Process.destroy but even if I do that it still doesn't close, it keeps running. Like, I open the Java app, wait for 25 mins and then call Process.destroy. For some reason that ...
Forum:  Java Programming Java Programming   - forum profile
Thread:  Show this thread (5 posts) Size: 2,663 bytes
Customize:  Customize "Runtime.exec and Process help :: Java Programming   :: Java Technology Forums"
Java Technology Forums
Started 1 month, 2 weeks ago (2008-07-12 10:49:00)  by xxx_stealth
Sory to create this post but i need help, my brain lacks in algorithm, I need to create a program that will convert any number into Roman Numerals that involves arrays. Any suggestion how to start and manage the program. thanks in advance. Edited by: xxx_stealth on Jul 12, 2008 6:52 AM
Forum:  New To Java New To Java   - forum profile
Thread:  Show this thread (4 posts) Size: 334 bytes
Customize:  Customize "Help any suggestion for a program.. :: New To Java   :: Java Technology Forums"
Java Technology Forums
Started 1 month, 2 weeks ago (2008-07-12 02:58:00)  by chandershekar
hi frns, i m new to this site. i need help i my school project. my teacher told me to write a drop down menu based program for airline tickets.it should use import staements, functions such as loop or any such functions and also have something intresting such as disco background.i am very bad in java programming. pls help ur help can get me score good marks
Forum:  New To Java New To Java   - forum profile
Thread:  Show this thread (15 posts) Size: 401 bytes
Customize:  Customize "pls help in my school project i m very bad in programming :: New To Java   :: Java Technology Forums"
Java Technology Forums
Started 1 month, 2 weeks ago (2008-07-12 12:31:00)  by Niekfct
Hi, since I'm new to this forum, I'll start right off with a question. I'm trying to create an application, which guides the user trough several windows. In the first window there is some user input, and frame2 opens. frame2 then opens, depending on user input, frame1 (restart the cycle) or frame3. I tried this with Threads, a Thread for each frame to keep things less complicated (less ...
Forum:  New To Java New To Java   - forum profile
Thread:  Show this thread (2 posts) Size: 5,547 bytes
Customize:  Customize "java.lang.IllegalThreadStateException - Trying to restart a Thread :: New To Java   :: Java Technology Forums"
Java Technology Forums
Started 1 month, 2 weeks ago (2008-07-12 11:37:00)  by RavuriVinodKumar
public class AboutStrings{ public static void main(String args[]){ String s1="hello"; String s2="hel"; String s3="lo"; String s4=s2+s3; //to know the hash codes of s1,s4. System.out.println(s1.hashCode()); System.out.println(s4.hashCode()); // these two s1 and s4 are having same hashcodes. if(s1==s4){...
Forum:  New To Java New To Java   - forum profile
Thread:  Show this thread (5 posts) Size: 1,092 bytes
Customize:  Customize "Strings :: New To Java   :: Java Technology Forums"
Java Technology Forums
Started 1 month, 2 weeks ago (2008-07-12 12:45:00)  by Sarraju
Our application is a network monitoring application , where we get lot of data from network every 2 minutes. When we try process large amount data in our application we start seeing memory leak. But if we control data inflow rate , then our application works fine with no leak. I am not able to profile our application with tools like Jprobe, as the profiler itself is running outofmemory ...
 

Hot threads for last week on Java Technology Forums:

No active threads for last week.

This page was found by:   rudp java  paypal print label j...  reliable extend Data...  richface show image ...  bedge graphs in java