I have just taken it upon myself to attempt to develop an application using java that will implement several features for my aircraft maintenance unit. I've taken a few courses in Java and I am a computer science major, so I wanted to use this as a way to improve my coding skills while also improving the effectiveness of my unit.
Anyway my application needs to have these key features:
1. Access a recall roster that is in Excel format and read the names/phone numbers of up to 200 members. The application also needs to be able to update this information and save it.
2. The application also needs to be able to initiate a recall to some or all of the members on the recall roster via text message.
3. The application needs to be able to receive messages back and display them under each name from the recall roster.
My current plan is to set up a GUI that expands JButtons in a scrollable window as members are read in from the excel document. Upon clicking any of the buttons the person will be contacted individually via a custom message that can be typed in via a popup window after clicking it. Alternatively you can check a box next to any persons button to add them to the list of people to be contacted and then click a button that says "Contact those checked" or something along those lines. Finally there will be a button that just says initiate total recall and it will contact everyone.
As for the interface I want each button to be highlighted red until a response has been received from the person associated with that button, which will then be recorded under their contact information.
I write a Client/Server program,trying to send and receive a object between client and server. I use the ObjectStream but there exists an EOFException on the client side when invoking readObject() .... I've tried many times but couldn't figure it out ...
server-side code
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { try{ ObjectOutputStream out = new ObjectOutputStream(resp.getOutputStream()); ObjectInputStream in = new ObjectInputStream(req.getInputStream()); PersonalData pe = (PersonalData)in.readObject(); System.out.println(pe.getYearlySalary());
I'm using netbeans to develop an application to send and receive data via RS 232 standard. I can send data but I can't read it.what can I do? I have this message in the console: Underlying input stream returned zero bytes. (I must use also threads to have application in real time but I don't understand very well....
I have programmed a Router class which has two methods, receive and send.In receive method it receives the plain text from the server through port 2000.Its now all cool.In send method it sends the message to a client through the port 2001 but at the client i get an exception
connection refused:connect import java.io.*; import java.util.*; import java.net.*; import java.sql.*; class Router { String str; public void receive()
Lets say I have a program that is not in any way connected to the Internet. I post it for for downloading, but I know that I will need to update it fairly often. I don't want people to have to redownload the entire program, I just want to send out a patch to update it. How can I do this?
I am trying out jsp and servlets now for the first time. I have to insert two data, car code and car name into a mysql table. I got those details using jsp but if I use form, it redirects to another page for insertion. I want the data to be inserted and still remain in same jsp page. I am thinking of using onClick from javascript but as I googled this many places have said it is a bad idea to use jsp inside javascript. If so how can we insert data to mysql table without redirecting to another page?
I have requirement, in that I am showing a Datatable, above that table i have form in that i can register a employee, after clicking on submit employee data have to be saved in the database aswell as i have to update datable, so that I can see that registered employee in that Datatable, how can i full fill this requirement. I am using jsf 2.0, ejb3.0,jpa 2.0.
In managed bean I am calling this service as fallow in init method, and i am binding same this. employee list to UI
public String getAllEmployeesfronHr() { this.employees = customerservice.getallEmployees(); System.out.println(this.employees.size() + "=================size of employee"); return ""; }
For every submit button click i have to query database or is there any mechanism to update List / can we use entity manager in anyway so that we can update Employee List....
I'm creating a web applicaion. for that i want to create a registration page. and this registration details have to be stored in the database.
I'm getting the below error while trying to send the data ...
The requested resource (/cmd/InsertRegtodb) is not available.
Here cmd is project name and InsertRegtodb is servlet name.
Actually the servlet is present is the mentioned address. but it is not connecting to it
There is one more servlet in the same folder and which is accessible from another jsp. But this servlet is not accessible even though i have used same code as it is used for the servlet which worked for me previously...
I am developing my first Java application and the database I use is MySQL. I have created two separate buttons; one to insert new data into my database and the other to update the database when changes are made.
Each button is working perfectly, but I now want to combine both functions into just the save button. Thus, whether I am entering new data or modifying existing data, the save button should use an IF ELSE condition to decide whether to use the INSERT or UPDATE command.
My problem is, how do I write this IF ELSE statement? What should be the condition? For example;
IF(what? ){ String sql ="Insert into Table1 (classID,className,counselorID,startDate,endDate) values (?,?,?,?,?)"; }ELSE{ String sql2 = "update Table1 set classID = '"+value1+"',className='"+value2+"',counselorID='"+value3+"',startDate='"+value4+"',endDate='"+value5+"' where classID = '"+value1+"'"; }
I have to write a program that calculates and displays a person's body mass index (BMI). The BMI is often used to determine whether a person with sedentary lifestyle is overweight or underweight for his or her height. A person's BMI is calaculated with the following formula:
BMI = Weight X 703/Height^2
where weight is measured in pounds and height is measured in inches. The program should display a message indicating whether the person has optimal weight, is underweight, or is overweight. A sedentary person's weight is considered optimal if his or her BMI is between 18.5 and 25. If the BMI is less than 18.5, the person is considered underweight. If the BMI value is greater than 25, the person is considered overweight.However I can't seem to get rid of these errors:
----jGRASP exec: javac BMI.java BMI.java:28: error: cannot find symbol Scanner keyboard = new Scanner(System.in); ^ symbol: class Scanner location: class BMI BMI.java:28: error: cannot find symbol
I am trying to create an array list without using the built in arrayList class that java has. I need to start the array being empty with a length of 5. I then add objects to the array. I want to check if the array is full and if not add a value to the next empty space. Once the array is full I then need to create a second array that starts empty and with the length of the first array + 1.
The contents of the first array are then copied into the new array without using the built in copy classes java has and then the new array ends up containing 5 elements and one null space the first time round. The first array is then overwritten with the new array containing the 5 elements and the null space. The process then starts again adding values until the array is full which will be 1 more value then recreating the second array empty and the length of the first array + 1. This is my attempt at creating this but I have run into multiple problems where I get only the last value I added and the rest of the values are null:
public class MyArrayList { public Object arrayList[]; public MyArrayList(Object[] arrayList) { this.arrayList = arrayList;
* A pop-up menu generates an array of rectangle objects; each rectangle having random x.y coords and colour. * The number of rectangles in the array is user selected from the popup list. * The APopUp class has a 'getter' method that returns the array. * The pop-up object is instantiated in an object of the AFrame class. * The AFrame object needs to get the array each time the popup changes its state.
The problem: . * As I see it, the AFrame object needs to informed of the pop-up's state of change event or does the problem lie in how I have decided which responsibilities each class is to have? I've tried to be as logical as possible during planning.
In the days of FORTRAN or BASIC we would hammer a solution through with brute force, but I would like to keep to Java's philosophy of encapsulation and clean interfaces and that it seems to has generated a impasse of brain warping proportions.
import java.awt.Frame; import java.awt.Label; import java.awt.event.ItemEvent; import java.awt.event.ItemListener; public class AFrame extends Frame implements ItemListener {
I got my first project in which i need to receive some data from multiple client on network regularly(say every second) and then process that data and stored it to the database and then GUI needs to be created which display data accordingly.
While thinking for the design i thought blocking queue to implement the same. Like producer receive data from the port into a string builder and put that into the LinkedBlockingQueue. Consumer will take this data , process some work on it and store it into the database.I am using sybase ase 15 as a database.
My question is as i am receiving data very frequently which require insertion , updation and search almost every second into the database. What is the best way to improve the performance.
say i have 2 types of data is coming one having keyword 'Alarm' and other having 'ceased' so i need to use something like this
common fields in both is name and number.
if (ceased) search into the database for particular event for which this ceased receive using name and numbe rand update the another field into it Also make separate entry for it else make a entry
Also as i am using 2-3 thread for consumers and thread = Number of client for the producer. So i thought to use synchronization at the consumer side which writes data into the database such that only 1 thread can write it.
I'm using the JOptionPane to display and receive information to/from the user. In addition to this, I am using StringBuilder to receive inputs from the user and then manipulate (append) that input to display the desired output.
//Example
(JOptionPane): "Enter text" (user input): Java is cool! (program): *stringBuilder.append(" I love it!") JOptionPane.showMessageDialog( ); .....
Psuedo-like code. The problem is that showMessageDialog(null, string) and not showMessageDialog(string, string). I want to display the enter text: " Java is cool! I love it! " in the JOptionPane. How do I accomplish this, since showMessageDialog only accepts (null, string).
I haven't been able to find a cut and paste working example of how to receive MIDI data from a MIDI device, like my piano, and display something to System.out.There are all sorts of examples for synthesizers, sequencers and sending data to a MIDI device, but I have not been able to find a single example of how to receive MIDI data and just display a simple message.
I just need something simple that works to start playing with it, and understanding how it works. Having a working example would also support understanding the Sound API descriptions. They read like differential equations texts books to me, i.e. not clear at all.
I have a working example of how to poll all devices and getDevice.info, which is supposed to then be used to address a specific MIDI device.
I've also looked at a number of books, in the store and on line.I haven't seen a single example anywhere.the closest I found to working examples was on StackOverflow, but I didn't understand some of the other code in the examples, which may or may not have been working correctly anyway.
Receive input events from a MIDI interface device.
This has suddenly stopped working for me after years of using the Java MIDI software.
I have tested this on two different macbook pro's.
I have a variety of MIDI interfaces from different manufacturers. I can find the devices using MidiSystem.getMidiDevice. But I cannot get them to see any input MIDI events.
I can create events in code and send them to output devices and have them seen by those devices. It's just the input that seems to be broken.
I have tried using previously working software I having been developing for years and I have tried with a very simple test program.
I wanted to write a simple code that receives information from the user (double-digit number and above) and calculates it's numbers.
For instance- The user wrote a number- 234, the software will return the number 9 (2+3+4 = 9).
Tried to use a loop for that, but I got stuck since I didn't know what to write.
This is what I've wrote so far
Java Code:
import java.util.Scanner; public class Calculate { public static void main(String[] args) { System.out.println("Please type a number larger than 9"); Scanner type = new Scanner(System.in); String number1 = type.nextLine();
for( int i = 0; i < number1.length(); i++ ){ int calculate = number1.charAt(i); } } } mh_sh_highlight_all('java');
We were given the assignment to program a lotto game. in our game we should do follow the following steps below, and we are supposed to use atleast tree methods. the first one to receive the array of integers and an integer and check if the int was not entered before. the user should not repeat the same number. the other method will draw all numbers of a game (quantity of numbers to draw is based on the number parameter) and returns them in an array. the last method will display the result of the game. It receives a list of all lines played and a list of all numbers draw.
these are the steps to follow:
1. Ask the user how many lines (games) the user would like to play. Each line is made of five numbers between 1 and 45 (inclusive).
2. Ask the user to enter five numbers between 1 and 45 (inclusive) for each line. The user must NOT be allowed to enter a number more than once for each line.
3. When all the numbers for all the lines are entered, the program should display all lines and asks the user to confirm the game. If the user does NOT confirm the game, the program should start all over again.
4. Draw (generate) five numbers between 1 and 45 (inclusive). The numbers should be unique within the draw.
5. Draw (generate) one number (the bonus number) between 1 and 45 (inclusive). The number should be unique within the draw.
6. Display all the lines played and the result of each line.
7. Ask the user if the person would like to play again, if so the program should start the process all over again.
import javax.servlet.*; import javax.servlet.http.*; import java.sql.*; import java.io.*; public class Test extends HttpServlet {
[Code] ....
This is the basic code structure and I'm trying to figure out this special case with handling the multiple parameters:
I don't want to use String []a=request.getParameterValues("studentname"); as hard code. The reason being the number of rows will be diyamic and I would like to get the column name and then then use an array of string to take values. But how can I connect these to form a query so that the rows goes on inserted one after other.