35,618 Topics

Member Avatar for
Member Avatar for bestiazeem

i want to synchronize punjabi text in picture formate with audio already downloaded.can u help me please.

0
44
Member Avatar for AS_82

I am going to develop a J2ME application, where the application gets the complete dat from an XML file, for this have used kxml parser. And the parsing already done, but the problem arise after parsing, i.e., When I get a String of Unicode for a particular Word, then the …

0
54
Member Avatar for i_me_roo

Hi, Is there a way of timing how long it takes between a piece of code executing to when it finishes and then displaying this time? I would like to display a clock which begins timing when a program starts running and stops when it finishes. Thanks

Member Avatar for Aldehyde81
0
159
Member Avatar for reddirt67

not sure how this site works... I'm stuck with a run error (Array out of bound exception 4)and can't figure it out, i'm new to the world of Java programming, so I'm hoping I'm not asking anything dump! pasted my code here: /* Purpose: To develop a program to accept …

Member Avatar for javaAddict
0
39
Member Avatar for toomuchfreetime

Hey I've been writing this hangman code for last week in college. and nearly got it finished but am after running into a problem. i want to run two different button handlers but can not figure out how to?. one for the letter a to z which i have working …

Member Avatar for peter_budo
0
144
Member Avatar for first001

i hope you can solve this problem during 1 hour.:P Answer all of the following questions. a. Create a Student class that has: i. Two instance variables, name and id. ii. Two constructors with the following headers : public Student(int id, String name) public Student(int id) iii. Two get (accessor) …

Member Avatar for jasimp
0
247
Member Avatar for flipflop11

Hi, Im currently writing some code to search an array for a key, though am having problems as the if loop I've got stops after one key has been found. the problem is that my array has multiple keys, so it needs to carry on looking! i know that it's …

Member Avatar for orko
0
112
Member Avatar for balasuresh

am student of computer science. i take my final year project this semester and i do not have any project title. i will like to do some web-based system.Can you give me some title?

Member Avatar for orko
0
72
Member Avatar for Valleyman

Can anyone help me .iam doing a distributed real-time banking application.I need ides on desinging the module. i plan to use sockets in the implemntation of the system

Member Avatar for orko
0
70
Member Avatar for Dragonetti

I am a beginner on Data Structures Here is my code, I seem not to be able to figure out how to delete a little node. Someone help me out please :D Here all the methods needed to delete a node. [code] public void eraseTree() { root = null; } …

Member Avatar for orko
0
151
Member Avatar for arif_iskandar

I got a problem in order to access the value for my radio button. I'm developing web application system that allow user to book something. so, i display the detail in list.But, i don't have any idea how to access the value.. this is the coding [code]<%@page import="java.util.*" %> <%@page …

0
71
Member Avatar for Lioshenka

Hello, kind sirs. I am making a JUnit test case to test one of my classes. Short description of the tested class: it takes two integers - one of them is "minLen", which is entered by the user. After that the "main" method calls the "talk" method, which sets the …

0
69
Member Avatar for Helpwithjava

I Would like to create a High Score For a Game in jave Called Jetman. i have created a class in java called Score and Score list to display the score but i do not know how to create a highscore using an Array List the Score Class is package …

Member Avatar for Helpwithjava
0
142
Member Avatar for jatin29
Member Avatar for Helpwithjava

package jetman; import java.io.FileWriter; import java.io.IOException; import java.io.PrintWriter; import java.util.*; //import java.util.Arrays.sort(); public class scoreList { String filePath = "Score.txt"; private ArrayList<Score> scoreArrayList = new ArrayList<Score>(); /** Creates a new instance of scoreList */ public scoreList() { FileWriter writer = null; try { writer = new FileWriter("Scores.txt"); } catch (IOException …

Member Avatar for jwenting
0
93
Member Avatar for rdhiravani

Hi, I have a JTable (call it Log Table) in my code showing Records & below that I have other tables showing some statistics based on new Record Inserted. The Log Table contains 21 columns. Each time a new record fetched is inserted into Log Table as it is & …

0
63
Member Avatar for themailsian

Dear Sir, Can I use SQL query with in the Jave script being used in ASP page. If i can please reffer me some samples code. Actually I have made a form in ASP code it contain a combobox with items from the database. on the selection of any item …

Member Avatar for sbv
0
73
Member Avatar for piers

Something I have noticed with my uni course is that there are so few women on it. Is there some reason why women stay away from the best part of using a computer IE programming in java? am I a bit strange in getting excited when I finally finish a …

Member Avatar for neocoder
0
349
Member Avatar for sachinpatil886

Hi i have written following java application in java and now i wnt to convert it into java applet,so an anybody help me out,plz.thanx in advance. import java.awt.*; import java.io.*; import java.awt.event.*; import javax.swing.*; import java.util.*; import java.text.*; import javax.swing.event.*; import javax.swing.undo.*; import javax.swing.text.*; import javax.swing.KeyStroke.*; public class mynote extends …

Member Avatar for jwenting
0
143
Member Avatar for robertarmerding

I am very new to computer programing. I am in a college class on Java. We have an assignment to record and report election results. At the state level, I need to gather the data from the County level and add the County results to show the state results. I …

Member Avatar for jwenting
0
40
Member Avatar for Koldsoul

My assignment is to use a method to do the pig latin part of a program I have already done. So basically, I have the program written, code is below, but am getting two errors in it. I have not really gone over using strings and returning them to the …

Member Avatar for new_2_java
0
144
Member Avatar for MxDev

hi guys, how to get messages issued by command prompet in java, i mean i could send commands to command prompet, if there's reuslts how could i get those results to be displayed in text field??? thank's

Member Avatar for Ezzaral
0
52
Member Avatar for nate12457
Member Avatar for Kob0724

All this regex stuff has me really confused. How could I just replace all the occurrences of "\\" in a string with "\n"?

Member Avatar for Kob0724
0
134
Member Avatar for nikk

In my website, i want to accept photos from users(through HTML page) and save them to database(MS SQL) Can you please tell me, how can i do so? Also tell me how to retrieve those photos back from database to HTML page or JSP. Thank you.

Member Avatar for ~s.o.s~
0
252
Member Avatar for Parsu7

I just want to know what happens when this code is written: public static void main(String[] args) throws IOException

Member Avatar for Parsu7
0
131
Member Avatar for gauravmishra

hi i want to know that what does the scale() method of AffineTransform do i mean when we reduce the size of a image does this transform reduces the number of pixels or something else .........

Member Avatar for gauravmishra
0
104
Member Avatar for KimJack

Hello All, I am having a problem with removing a specific item from a linked list. Any advice would be great: Here are some snippets: private Node head; //the head node at the front of the list private Node previous; //element just before the current position private Node current; //refers …

Member Avatar for sohguanh
0
920
Member Avatar for slayer10

Ok, i have been making a chess game program, basically what it is is a chesspiece class and a chess board class, the chessboard class has an 8x8 2-d array of chesspiece objects, then i have my frame, my frame has a parallel 2-d array of Jtoggle buttons, when a …

Member Avatar for slayer10
0
80
Member Avatar for maggie789

Hi, I was wondering if there is a way to split double into its integer part and decimal part. I' working on binary converter, and my teacher gave me 4 steps on how to write the program. I've completed step 1 which is separating number into integer and decimal portion, …

Member Avatar for maggie789
0
957

The End.