Adding And Subtracting In Budget Program - Display Table Showing Transactions
Mar 15, 2014
Budget program. Here is my situation, I have 2 tabs in a GUI, one tab adds a transactions when the add button is clicked, and in the other tab displays a table showing all the transactions. In my code, I want it so that when the user chooses a deposit(combo box variable name = cbType, indexnumber for deposit is 0) it will add to the total and when the user chooses withdraw(index number is 1) then it will subtract it from the total. Here is the code.... (note as well, the code also adds a new row to the table)
//add button clicked
private class BtnAddActionListener implements ActionListener {
public void actionPerformed(ActionEvent arg0) {
((DefaultTableModel)table.getModel()).addRow(new Object[]{
cbMonth.getSelectedItem() + "/" + txtDay.getText() + "/" + cbYear.getSelectedItem(),
cbCategory.getSelectedItem(),
[Code] .....
So when I tested the program with 2 transactions, the first transaction was a deposit and the 2nd transaction was a withdraw. The end product was that both amounts were subtracted from the total. When I did a withdraw first and a deposit second, the amounts were both added together.
View Replies
ADVERTISEMENT
Feb 3, 2014
You are to design a Java application to carry out additions and subtractions for numbers of any length. A number is represented as an object which includes a sign and two strings for the whole and decimal parts of the number. And, the operations must be done by adding or subtracting characters directly. You are not allowed to convert these strings to numbers before the operation.
The program must use a "Number" class which includes at least the following methods:
Number ( );
Number (double n);
Number add (Number RHS);
Number subtract (Number RHS);
String toString ( );
This is what i have but it only adds positive numbers and it doesn't subtract problems like 7.05-8.96. Also some of it was what our teacher gave us like alignwhole method
import java.util.Scanner;
public class Number{
private String whole;
private String decimal;
private String sign;
public static void main (String[] args){
System.out.println("Enter two numbers");
[code]....
View Replies
View Related
Feb 5, 2014
You are to design a Java application to carry out additions and subtractions for numbers of any length. A number is represented as an object which includes a sign and two strings for the whole and decimal parts of the number. And, the operations must be done by adding or subtracting characters directly. You are not allowed to convert these strings to numbers before the operation.
The program must use a "Number" class which includes at least the following methods:
Number ( );
Number (double n);
Number add (Number RHS);
Number subtract (Number RHS);
String toString ( );
The below code is what our teacher gave us to start with, but it needs to add and subtract positive or negative numbers of any length. This code only adds positive numbers. Need to write code for subtraction .
Java Code:
import java.util.Scanner;
public class Number{
private String whole;
private String decimal;
private String sign;
[Code] .....
View Replies
View Related
Mar 13, 2014
This is my codes in a button that if I click it . that information will send to Jtable but the problem is the jtable is in another frame so how can i connect this ?
DefaultTableModel model = (DefaultTableModel)
new admin().tableBagtags.getModel();
if (txtName.getText().equals("")) {
JOptionPane.showMessageDialog(null, "Please fill out all fields.", "Error!", JOptionPane.ERROR_MESSAGE);
[Code] .....
View Replies
View Related
Feb 19, 2014
I had to make a table showing different values for converting kg to lbs and I'm confused because when it compiles, some of the decimals show correctly and some of them show with several 0's added on with another number on the end. I've tried to do math.random, but I'm not sure how to tie it in with my program.
//1 kg = 2.2 lbs
public class kg_to_lbs {
public static void main(String[] args) {
//not sure if values are needed..
int kg = 1;
double lbs = 2.20;
//Table title
[Code]...
and this is some of the results I get
1 | 2.2
2 | 4.4
3 | 6.6000000000000005
4 | 8.8
5 | 11.0
6 | 13.200000000000001
View Replies
View Related
Aug 2, 2014
I'm new in JSF, so maybe this is a very simple problem:
My small application uses 'primefaces ' and I'd like to display the course of some laboratory values this way:
Parameter2014-08-022014-08-012014-07-31
Natrium [mmol/l]140.0135.0135.5
Calcium [mmol/l]2.12.02.3
Kalium [mmol/l]4.34.05.3
[...] [mmol/l]1.32.02.3
Data is stored in a per day manner, so each table column shows one record.
In JSF, I've only seen tables showing records in rows. How to display a transposed data table in JSF.
View Replies
View Related
Aug 2, 2014
I'm new in JSF, so maybe this is a very simple problem: My small application actually uses 'primefaces ' and I'd like to display the course of some laboratory values this way:
Parameter2014-08-022014-08-012014-07-31
Natrium [mmol/l]140.0135.0135.5
Calcium [mmol/l]2.12.02.3
Kalium [mmol/l]4.34.05.3
[...] [mmol/l]1.32.02.3
Data is stored in a per day manner, so each table column shows one record.
In JSF, I've only seen tables showing records in rows. How to display a transposed data table using a component framework in JSF.
View Replies
View Related
Aug 8, 2014
So for some reason my app works fine when I enter in the new expenses (option 2 when starting app).Then when I want to look up the total expenses in a month (case 5 then case 2), it doesn't show up and brings me back to the original option screen.So for some reason it must be breaking right back to it? I am really confused as to where this error could be coming from.
package homebudget;
import java.io.FileInputStream;
import java.io.ObjectInputStream;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import javax.swing.JOptionPane;
[code]....
View Replies
View Related
Mar 11, 2014
how can I add the numbers in quantity where it will automatically put in total?
im using netbeans.
just want the codes for how to add the listed quantity?
View Replies
View Related
Aug 27, 2014
I want to develop a dynamic scheduling application that I hope to use at work, but I have some questions about the design approach since this is my first undertaking of this kind of project.
The purpose of the application is to display a chart showing the lesson times for a particular teacher and her students.
Here's are more important details:
-The chart displays the current day's schedule.
-The top row displays the teacher's name. There are at least 4 teachers each day.
-The leftmost column shows the times (from 3:00 to 8:00).
-The table is filled with the names of the students.
My current problem is deciding on the best approach to storing this data containing the teacher and her students and times. I should also note that there are about 500 students and around 20 teachers (i.e. the dataset is small). Is this a problem solved using a database and JDBC or could I just write the data to file? Are there other approaches that would solve this problem?
View Replies
View Related
Apr 7, 2014
I use Javassist to manually add a exception table entry:
Java Code:
MethodInfo minfo = (MethodInfo) aclasscf.getMethods().get(0);
CodeAttribute ca = minfo.getCodeAttribute();
ExceptionTable et = ca.getExceptionTable();
et.add(26, 30, 40, 0);
System.out.println("exception table size: " + et.size()); mh_sh_highlight_all('java');
If I get the bytecode with javap it seems to work:
Java Code:
Exception Table
from to target type
26 30 40 any mh_sh_highlight_all('java');
But the problem is that I can't run the file anymore. Simply running it with the java command results in "java.lang.VerifyError: Expecting a stackmap frame at branch target 40". After some research this seems to be a problem with java 7 and a stricter verifier. I read several times that java -XX:-UseSplitVerifier should be used instead.
This really fixed the stackmap error, but then another error appeared: "java.lang.VerifyError: (class: AClass, method: signature: ()V) Inconsistent stack height 2 != 1". Are there any further steps required to insert a new exception in the exception table?
Additional info: Later I want to remove gotos (in this case the goto at line 27) and add a function call instead. When this function finishes it will throw a exception and propagate it back to the caller (which will be at line 27). Then the program should go on as if nothing happend, that is also the reason why the target of the exception is the same as the target of the goto (40)
Here is the bytecode:
Java Code:
0: aload_0
1: invokespecial #8 // Method java/lang/Object."<init>":()V
4: iconst_0
5: istore_1
6: goto 19
9: getstatic #10 // Field java/lang/System.out:Ljava/io/PrintStream;
12: iload_1
13: invokevirtual #16 // Method java/io/PrintStream.println:(I)V
[Code] .....
Exception table:
from to target type
26 30 40 any mh_sh_highlight_all('java');
View Replies
View Related
Nov 22, 2014
I am trying to put together a small application in my spare time. Nothing major, but one thing I want it to do is accept a few inputs, and take those and add them to a table with columns for use later (printing, calculations, etc). I was originally looking at something like Jtable, but that looks just like an excel spreadsheet done Java, so not what I'm looking for.
I'm looking for something that's read-only, where I can insert data from input fields, and then perform calculations with the column data later.
View Replies
View Related
Mar 18, 2013
How I can add a column with check boxes for each record in my table in JSP? Also, I want to figure out a way that what records the user has checked!
View Replies
View Related
Oct 20, 2014
When I am entering the student name , his/her details should be retrieved from database by servlets and the data to be print in jsp pages this what I want But I am unable to display the data from database in jsp pages .
Sucess.jsp
-----------
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<%@page import="StudentBean"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"/>/"+request.getServerName()+":"+request.getServerPort()+path+"/";
[code].....
note The full stack trace of the root cause is available in the Apache Tomcat/7.0.47 logs.
Apache Tomcat/7.0.47
View Replies
View Related
Jul 10, 2014
I think I need to save the file into an object but I cannot seem to figure out how. I tried to save it into a string array but that did not work either. I have been working on that section for three weeks and cannot get it to display correctly.
public class DVDList2 {
private static void CreateGUI(){
File file = new File("C:UsersaprildesktopDVD.txt");
JTextField txtName, txtSeason, txtSearch, txtMain;
JFrame frame = new JFrame("DVD List");
txtName = new JTextField(20);
[Code]...
View Replies
View Related
Feb 15, 2014
Need to display data in a table - no of columns are fixed, and rows may vary based on the data available in DB.Display tables in horizontally and 2 tables per row. If it exceeds 3 it should display in next rowsample format to display attached in attachment,Using JSF 2 & richfaces 4.0.
View Replies
View Related
Jan 18, 2015
I'm making a Boggle game, but the issue here is that the boggle board is not showing up when i run the program.
Here is the code:
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
public class Boggle {
public static void main(String[] args) {
[code]....
View Replies
View Related
Mar 25, 2014
My deckPanel's etc. are not showing up when I run my program. What am I missing in my orderCalc class or maybe from my deckPanel class?
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class OrderCalc extends JFrame
[code]...
View Replies
View Related
Feb 26, 2005
I'm supposed to take this truth table and alter it so it displays 1's and 0's instead of true false. I'm assumed to do this I would just need to change the variable type and replace true and false with 1 and 0 but every way I try this does not work.
//a truth table for the logical operators.
class LogicalOpTable {
public static void main(String args[]) {
boolean p, q;
System.out.println("P Q AND OR XOR NOT");
p = true; q = true;
System.out.print(p + " " + q +" ");
[Code] ....
View Replies
View Related
Feb 14, 2014
How to solve the following task:
Design a programto display the followingSchool Time Table on screen.
Capture.PNG
Yourprogram should use thefollowing named constants tocontrol theformat of the calendar display:
/*Thenumberofdaysinthemonth*/
privatestaticfinalintDAYS_IN_MONTH=31;
/*Thedayoftheweekonwhichthemonthstarts*/
/*(Monday=0,Tuesday=1,andsoon)*/
privatestaticfinalintDAY_WEEK_STARTS=0;
/*Thewidthinpixelsofadayonthecalendar*/
privatestaticfinalintDAY_WIDTH=40;
/*Theheightinpixelsofadayonthecalendar*/
privatestaticfinalintDAY_HEIGHT=30;
View Replies
View Related
Feb 24, 2013
I am using eclipse 6.0 - structs 1.3my requirement is to simple. "bunch of db data need to display over the table". I need an example.
View Replies
View Related
Jun 6, 2014
I have an application that displays a GUI and this GUI displays a table with several columns and rows. I have a class that extends DefaultTableModel. I wrote the code that displays the GUI. When the database table changes, how would I updated the GUI dynamically? Do you have any sample code that does that?
View Replies
View Related
Jan 31, 2014
I have folder which contains PDF and i want to show them in html table in the web browser using JSP
View Replies
View Related
Jan 12, 2015
I have a scenario :
A ) If there is a message driven bean with CMT and transaction attribute required
-begin MDB
-Write to DB
-Send message to queue
-Null pointer exception.
I know this is a system exception , the transaction will be rolled back , which mean all my changes to DB will be rolled back.
But what will happen to the message sent to JMS queue ? It will be removed also ?
B) what will happen if the same above sequence appear with BMT
-Start transaction
-Write to DB
-Send message to queue
-Null pointer exception.
What about my changes at DB and my message at queue ?
View Replies
View Related
Dec 23, 2014
I have been writing the below Dinner Menu Applet; however some text is not showing on the applet and it is not adding the 'desserts" section correctly especially the one that says "rice Pudding". I've tried it in so many different ways and it's sill not working correctly.
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
public class DinnerMenuApplet extends Applet implements ItemListener
{
Label dinnerMenu = new Label("Dinner Menu");
[code]....
View Replies
View Related
May 19, 2014
When i run the program it doesn't show all the text fields and labels and stuff but when i click btnTest_1 and go back to btnTest everything appears...
Java Code:
import javax.swing.*;
public class Frame extends JFrame{
private JTextField textField;
private JTextField textField_1;
public Frame(){
setTitle("Multifunctual Calculator");
[Code] ....
View Replies
View Related