32,204 Topics
| |
Hello I am new to Java & I am trying to find ways(in built Java objects/ways) to parse HTML. Can you suggest some objects in the Java Standard Library? I have extended the object HTMLEditorKit.ParserCallback but when parsing a web pages' source code it literally takes 2 minutes or more! … | |
| here is my code and i have tokenized the data in my .txt file.I want to insert them into a database. import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; import java.util.StringTokenizer; public class test1 { public static void main(String[] args) { BufferedReader br = null; try { String sCurrentLine; br = new … |
<html><head></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import java.text.DecimalFormat; import java.util.Scanner; public class BookBillSystem { public static void main(String[] args) { //create the Scanner instance for taking input from console Scanner scanner = new Scanner(System.in); //take input customer name System.out.print("Customer Name: "); String customerName = scanner.nextLine(); //take input noOfBooks purchased System.out.print("No of books … | |
When I try to type in a set user to add to the friends list, it shows up blank via [[]]. I know I'm missing something or it's the way I set up the input, but I can't figure it out. Main Driver import java.util.*; public class main { public … | |
I want to ask >>what is the use of (string args[])??? and how can I use system.exit >>without intially import the package (java.lang) ? thanks ^^ import javax.swing.JoptionPane; public welcome1 { public static void main (stirng args[]){ JoptionPane.showMessageDialoge(null,"welcome to java"); system.exit(0); } } | |
| i am using eclipse to write code that allows me to take a text file containing data (in my case it looks something like this :20 30 40 50 etc).i want to write the code in java and i am using eclipse as my IDE.i need the database to be … |
Here my code. package formsign; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.ItemEvent; import java.awt.event.ItemListener; import javax.swing.*; public class textF extends JFrame{ private JTextField fname; private JTextField lname; private JPasswordField pass; private JTextField country; private JTextField zip; private JTextField month; private JTextField day; private JTextField year; private JTextField phone; private … | |
Hello all, I am trying to take input from user using scanner. The problem is, when the loop starts, it skips taking input for the first iteration. Here is the code: import java.util.Scanner; public class TrigTriangles{ public static void main(String[] args){ int N; double a,b,c; double A,B,C; Scanner s = … | |
- Hi there. - I'm learning Distributed System and having an assignment of building a simple Game server using RESTful webservise. I'll use Java to build this server. And i need some help. - The game server provides the following services: + Register an account using for all game provided … | |
Hi, I have been searching out a lot of things to sove my problem but none of the solutions I found worked in my case :'( Here is what I am trying to do: 1. When the screen is off, my BroadCastReceiver detects it. 2. Once screen_off is detected, acquire … | |
Hello All, I am working on a project for class and I have everything work except for one little thing. I can compile there is no issues with running the program. However, when get prints the information I get a null as the value for the Mobile OS. I do … | |
I'm in AP Computer Science A* I was doing the following problem: int i = 1; while ( i < 10 ) { int j = 10; while ( j > i ) j--; i += j; } System.out.print(i); The output is 16, but can someone please explain why it … | |
what input statement is used in a float..` import java.util.Scanner; public class Program1 { public static void main(String[] args) { float Fahrenheit, celsius; Scanner input = new Scanner(System.in); System.out.print("Enter temperatue in Celsius"); celsius = input.nextDouble();<---- this line is giving a run time error. Fahrenheit= ((9 * celsius)/5 +32 ); System.out.println(celsius … | |
Hi I am a senior at high school. The school is making us create a product to present and I want to create a Java computer program for my product and present that. I want to make something cool and something that'll make you go "wow". I've narrowed my category … | |
somebody can help me... | |
[This article](http://lifehacker.com/the-top-programming-languages-ranked-by-job-demand-po-1601752302) will give you at least one good reason... | |
I am developing a java application that uses a jtabe to allow the user to capture data. This data would be written to a text file later. The application is working fine. Good. However, I wanted to add a button such that when a user click this button, the application … | |
Hi i am new to java and i need help to write program for this problem Updating inventory A national chain is making room for new inventory, so it is selling existing inventory at discounted prices. All products in the store are on sale, but the markdown percentage varies depending … | |
Hi all, I understand the concept of Serialization but,want to know 1.when we use this in realtime? and 2.under what situations we can use this? I tried to google but cant find an satisfactory answer.Please help me out. Thanks in advance | |
Hello, I'm writing a program that acts as a 'pocket' where the user is able to enter a kind of coin, such as, a quarter and the amount of quarters it has. I was assigned to do 3 different class, the Coin Class in which the coins and their values … | |
I'm trying to play the sounds according to what's called on the arraylist but the sounds are playing randomly and it seems like the sounds are overlapping. what is wrong with my code and what code should i use or add? can anyone help me? here is my code: package … | |
Is anyone can help me in getting the whole java technology details which like start to end of java in a manner such that i can refer to learn and know how much java i got till now. please help me. | |
Sir please help me to develope Support Vector Machine for plant disease classification in java?? | |
hello, I am working on networking project. I have made client server program through socket program. Now, i don't know which library is used to detect hardware i.e. attached on machine. mean how can i detect keyboard is attached to my pc or not? mean how can i detect mouse … | |
Hello, I am making project of Face detection from image. I have read OpenCV library for it, but exactly i can't get how to find multiple face from image. i had group photos of my friends, i want find face of each person of the photo like tagging in facebook … | |
Hello everybody, could someone please urgent help me with this assignment question? I just need some tips on why my prompt dialog is not working correctly. The script is below after the assignment question... Finish the coding of the class LightController by completing the public instance method runLight(). This method … | |
Do anyone know how to set the title of a program files extends with JApplet? | |
I have only one week to learn java at a intermediate level. What books tutorials you recomend? Another thing I have to learn is java Algoritms and Data structures. Can some one show me how? I have a little bit understanding of arrays if while for switch classes try catch … | |
I'm making a program that will let you access a system via encrypted code from a USB. But I can't seem to figure out how I would go about making the user login to the computer via USB. I'll add the code in the code so far. /* This is … | |
hi anyone I am doing a car insurance program in java and i need to understand this error. the program goes like this. it depend on the driver's age and how many accidents he had. from 1 to 5 it have difference charges with additional surcharge an for 6 you … |
The End.