32,199 Topics

Member Avatar for
Member Avatar for bluedos82

Has anyone else had this problem: You go to Yahoo! Chat or to Pogo.com to play some games. Your OS is WIN ME. You go to these websites, but for some reason the Java refuses to work. SO you do what the instructions say: Download the current version of Java. …

Member Avatar for jenspme
0
220
Member Avatar for rpjanaka

hi all, i am janaka priyadarshana, i have a doubt about java and OSI layers. i want to know that , java sockets are belongs to which layer .....? that mean when I write to, or read from a socket, that process is going on in which OSI layer......? ex....network …

0
47
Member Avatar for cute_shivi
Member Avatar for AndrewSmith

Hi Guys. Hope i'm in the right forum. I'm using something called SWFObject to load in my activeX controls(flash objects). Its working great, except for as soon as I call a javaScript function from a page that has flash on it, the flash unloads. Yeesh. Any ideas?

Member Avatar for GreenDay2001
0
80
Member Avatar for Magicboi8

"Java not found or not working" This Is the message I read yesterday when I tried to play on pogo and when I cliked on a game It brought me to a page where It said that message I realized since I reinstalled windows I need to update java so …

Member Avatar for Magicboi8
0
82
Member Avatar for techkar

Hi experts, here in my project ,there is a situation like, to read an Excel file and store in a database using java. I have an excel file as 10 columns and this is a daily report by our sales team. So the requirement is to read that excel file …

Member Avatar for iamthwee
0
128
Member Avatar for charlesguo25

Can somebody help me with this problem? It must use recursion however, and no iterative statements. Write a method called reverse that takes a single long integer argument and returns the result of reversing its digits. For example: System.out.print(reverse(-12); returns -21 and System.out.print(reverse(1234567)); returns 7654321 i know that (number % …

Member Avatar for charlesguo25
0
97
Member Avatar for ede

hi, folks! ı'm last year student at university. so ı must do a thesis. ı'm a bit confused about what ı should decide to. actually ı think to search about distributed systems which are based over RMI/CORBA. maybe you know that java EE is a platform that is based over …

0
68
Member Avatar for amaravanich

Hi , can we set cursor position where ever we want in dos prompt from java programming. i want to clear dos prompt window from java program.and go bak to some position .Is there any way of doing that?.

0
60
Member Avatar for celenenavarro

Coulde anyone post a code on how to convert images to binary? I need to store the data in my database using an http connection. also how do i retrieve the image from the database?

0
41
Member Avatar for rinoa04

Hello, I am interested in knowing your opinion in Java GUI development using AWT and Swing. Each have its own pros and cons. I am wondering which one is most preferable by java developer. AWT or Swing or Both? Please state your reason. Thank you.

Member Avatar for rinoa04
0
72
Member Avatar for hemanthjava

[B]Probelm: [/B] I have 2 panels in my main container. The jplTop Panel is what with I am concerned. I have set its layout as[B] jplTop.setLayout(new GridLayout(2,4));[/B]. So as per the layout setting I must have 4 components on the 1st row and 2 components on the second row. But …

Member Avatar for DavidRyan
0
88
Member Avatar for jaden403

I have a basic Java file I/O question. I am trying to read/write from/to a text file (obviously) from within a function that is called by main(). Can you do the following within a function: [code] Scanner inFile = new Scanner(new FileReader("File1.txt")); PrintWriter outFile = new PrintWriter("File2.txt"); [/code] or does …

Member Avatar for jaden403
0
123
Member Avatar for MNR

Hi, I have to make a snake game. i need an array to store allposition of the snakes body. i will also need a variable to store the number of parts in the snakes body. I know that i have to use the number of parts ++ but i dont …

Member Avatar for iamthwee
0
630
Member Avatar for PPaul1

I'm trying to show the balance and interest paid for each month. The balance should go down with each loop until balance is paid in full. The balance will go down but with the wrong amount I don't know how to put an loop in here that will say balance …

Member Avatar for masijade
0
162
Member Avatar for NPatty

<code>Does anyone know how do I go about getting user's responces once they've entered their responce into a prompt box & assign it to a variable, to utlimately use their responces to concatenate it with other strings to make a sentence. I'm just having trouble assinging user's input to be …

Member Avatar for masijade
0
90
Member Avatar for crestaldin

[COLOR="Navy"]Hi everyone, I'd like to know if anyone can give me any idea(s) or resources to help me with a project I'm working on. I am creating Email agents using SMTP and IMAP protocols.I have been able to work on the SMTP part, however, I'm having challenges writing the codes …

0
88
Member Avatar for jeffrey296

Hello to anyone who can help me. I'm a freshman in comp sci and here is my problem: I need to have the user type in a number in a JOptionPane input box, and I need to change the number they input into a double. Here's what I have, it …

Member Avatar for cms271828
0
137
Member Avatar for hemanthjava

[code]/* Java Swing Calculator */ import java.awt.BorderLayout; import java.awt.Color; import java.awt.Container; import java.awt.FlowLayout; import java.awt.Font; import java.awt.GridLayout; import java.awt.Window; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import javax.swing.JButton; import javax.swing.JDialog; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JMenu; import javax.swing.JMenuBar; import javax.swing.JMenuItem; import javax.swing.JPanel; import javax.swing.JTextArea; public class Calculator extends JFrame …

Member Avatar for cms271828
0
163
Member Avatar for iamthwee

Hi people, I am having trouble with my splash screen. Basically, it just flashes really quickly and I can't get to to pause for long enough. See attached file. I've attached my program as a zipped file. After you have download it you need to right click and extract it …

Member Avatar for ciprianpascu
0
561
Member Avatar for higherGround574

I have to get an animation to restart once the user scrolls the mouse over the image... I know I have to use MouseMotionListener, what I don't know is how to get the coordinates of the image to do this operation. I'm using GridBagLayout manager, the whole thing runs inside …

Member Avatar for cms271828
0
96
Member Avatar for jeffphotos

Hello- I am creating a puzzle that is like the "Rubik's Cube," although this puzzle is played on the computer monitor, and the puzzle involves images placed on the sides of a cube. The mouse is used to rotate the sides of the cube. Each side of the cube is …

Member Avatar for cms271828
0
134
Member Avatar for silentcreeper

ok I poseted about an assignment that i had to do for my Java programming class. Now i have attempted it and i have kind of gotten it to work but its not working properly ... i have no idea what i'm doing wrong ... please help me fix my …

Member Avatar for silentcreeper
0
118
Member Avatar for crackers8838

Hi, I am new at programming and I have never done Java before. I am in my first Java class and we are asked to complete the following question...[B]Complete the method printLargestAnimal below. [/B]Consider the three Strings "dog", "cat", and "monkey". In lexicographical order, "monkey" is the largest of the …

Member Avatar for crackers8838
0
82
Member Avatar for abhishekG

hi I am facing problem in Threads in java. I have studied threads and know the theory of it. But I just cant get started. It would be great if I can get some sample codes showing the use of wait(), notify(), sleep() . The code should have a number …

Member Avatar for masijade
0
68
Member Avatar for Taps

hello all..I have created ANT Script and need to work along with CVSMy ANT Script shall1. As of CVS extract .ear from this is the common version 2. Extract from CVS and overwrite in target directory the specific components listed in the specific [INSTANCE].Can any one tell me how shall …

0
219
Member Avatar for mikel_2006

Hello Everyone, I am having quite a problem with a program I am trying to get working. I am trying to make a marks tracking program using an array that has an array of strings 3 elements long called Names. Has a 2D array of integers 3 * 2 elements …

Member Avatar for masijade
0
73
Member Avatar for Ajay Raj

Hi all, I have developed and application (midlet), could any one please let me know how to deploy this on the device (mobile device).

Member Avatar for jbennet
0
56
Member Avatar for Zulfiqarmd

Hi all, I am working on generating CSV month by month for annual report. what I do is just create CSV file initially and append to it every month end. So as to generate annual CSV file in following format: Month 1, Nokia8800, 156.0 Month 1, Nokia3120, 113.0 Month 2, …

Member Avatar for iamthwee
-1
95
Member Avatar for jan1024188

i want to know if there is any difference betwen [URL="http://www.linuxforums.org/forum/#"]java[/URL] and javascript... are they the same thing?

Member Avatar for satyakishore
0
122

The End.