JSP :: Format Specifier Error

Dec 12, 2014

I am getting the following error:

Exception in thread "main" java.util.MissingFormatArgumentException: Format specifier '.2f'

The line it is referring to is:

System.out.println("
Toppings: ");
for (int i = 0; i < toppings.size(); i++) {
System.out.format("%-15s£%.2f
",BBQSpecial.getToppings().get(i)
.name(), BBQSpecial.getToppings().get(i).getCost());

View Replies


ADVERTISEMENT

Real Purpose Of Using Protected Access Specifier

Jan 26, 2014

What is the real purpose of using Protected access specifier in Java?

View Replies View Related

EJB / EE :: Error - Literal Does Not Match Format String

Mar 3, 2015

I'm trying to insert some data of type date into database table using hibernate.i take the input date from an xhtml form as shown below

addEvent.xhtml
Event Date (dd-mon-yy) :
<br/>
<h:inputText id="eventdate" value="#{eventBean.eventDate}" p:required="required"
p:type="date"/>
<p/>
<h:commandButton value="Add Event" actionListener="#{eventBean.addEvent}" />
<p/>

This is my addEvent method in EventBean.java

public void addEvent(ActionEvent evt) {
uname = Util.getUname();
boolean a = EventDAO.add(this);
if ( a) {
message = "Event has been added!";

[Code] ....

While executing this..i get the following error: ORA-01861: literal does not match format string. Could it be due to any mismatch in date format (chrome browser automatically takes date in the format mm-dd-yyyy )? If yes, how do I resolve it? (I'm using Oracle database)

View Replies View Related

Method To Format Telephone Numbers - String Index Out Of Range Error

Jan 25, 2015

I'm trying to put together a method that formats telelphone numbers, but there's a part of my code that not working. If I enter (305)912-5458 into the variable phoneNumb I get an index is out of range error. I added a lot of system out messages so that I can try to get an idea of why the code was crashing.

public static void main(String[] args) {
int intBegin = 0;
int intEnd = 1;
int length;
String charact;
StringBuilder numbuilder = new StringBuilder();

[Code] .....

The error message I'm getting is:

run:
The length is 13
intBegin is at 0
intEnd is at 1
index is at 0
Charcter ( was not inserted

[Code] ....

View Replies View Related

Date Format Changes On Its Own

Jun 9, 2014

<script type="text/javascript">
function CompareDates(id)
{
var monName = new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sept", "Oct", "Nov", "Dec");
var d = new Date(id);
var curr_date = d.getDate();

[code]....

why the default date format that the textbox accepts is in 'mm/dd/yyyy'.For example if i entered "13-05-2014" then it would return an error stating date is invalid.If i entered "12-05-2014" then it would return "5 Dec, 2014".I did not declare any dateformat anywhere except for the datepickers which as shown above, is 'd MMM, yyyy'.Before this happened i trialed and error many different kind of codes to try to validate the date however it all didnt work and so i reverted it all back to the original codes.Last time the dateformat that the textbox accepted was 'dd/mm/yyyy' and it worked fine with my javascript function except the validation part.

Now it still works except that the dateformat changed to 'mm/dd/yyyy'.I did try to use console.log to find out what's wrong but there were no error messages.Why has the dateformat changed by itself?

View Replies View Related

JSP :: Export To PDF Format

May 24, 2006

I'm doing a project in JSP and Oracle..Here in my project there are two types of department.. Accounts and Sales.. Accounts department is able to download some pages to Excel format and it is working properly.. now in the sales they have to download in pdf format.. then only it is possible to send to the HO..now what they are doing is downloading the JSP page in excel format and converting to pdf manually using the Acrobat Printer.. is that possible to change to pdf format.. for converting to excel format.. i'm just using 2 linesand it is here

<%@ page language="java" session="true" import="java.sql.*" import="java.lang.*" contentType="application/vnd.ms-excel" %><%response.setHeader("Content Disposition","attachment; filename=test.xls");%>

in the filename side i chaged to test.pdf.. and in the contentType i changed to Acrobat readerand it is downloading but cannot view the content

View Replies View Related

Cannot Format Given Object As A Date

Jun 4, 2014

When trying to convert the time zone of a date I encountered the log below. java.lang.IllegalArgumentException: Cannot format given Object as a Date..Here is what my code looks like:

1. First I will get the date from the email header by the following code.

String messageDate = (String) mail.headers["Date"];

Output: Wed, 4 Jun 2014 18:30:05 +0800

2. Next I will convert the timezone to EST.

SimpleDateFormat timeZoneConvert = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss Z");

timeZoneConvert.setTimeZone(TimeZone.getTimeZone(" EST"));

String l_MailDateEST = timeZoneConvert.format(messageDate.trim());

Once the code run I encounter the said error.

View Replies View Related

JSP :: Dropdown List Format

Mar 30, 2014

I want to create a quiz in java in which questions and options will be retrieved from mysql database.I want the options to be in drop down list format.And I am using jsp for presentation layer and all the connections with database are in java..how to retrieve the options from database to drop down menu...

View Replies View Related

How To Apply Format Pattern

Jan 12, 2015

I am able to get Cpu speed using my GetProcessorSpeed method and It returns this output 1796. How can apply this pattern "#.##". I am trying something like this.

Format formatter=new DecimalFormat("#.##");
formatter.format(MainClass.GetProcessorSpeed());
label2.setText(formatter.toString());

View Replies View Related

Changing Format For Timer?

Mar 17, 2014

im making a javabean for stopwatch which works perfectly, but i want in the property descriptor format, so the user can change its format.

currently i have;

private String displayFormat = "MMMM d, yyyy h:mm:ss";
private SimpleDateFormat formatter;
public synchronized void setDisplayFormat(String newFormat) {
String oldFormat = getDisplayFormat();
try {
formatter.applyLocalizedPattern(newFormat);
timerHasPinged();

[code]....

currently the timer works its format is in 00:00 minutes:seconds, but i want it to start as MMMM d, yyyy h:mm:ss, for example March 17 2014 00:00:01, so only one second has passed here. i believe the set and get format method is fine but the timerhaschanged needs to change as this is where the format takes place.

View Replies View Related

Enforcing A Format On String?

May 8, 2014

Alright, so let's say I have this string. I want to make it so that the string for this variable has to follow a certain format.

For example, "AAA-B", where the A's are a digit 0-9, the - is always in the same spot, and B is a letter but only from A-M. All of this for a single instance variable.

Is this possible? How could I go about doing this.

View Replies View Related

Program Cannot See DECIMAL FORMAT

May 12, 2015

I am using NetBeans IDE 8.0.2 to program Java code. I am a beginner in Java.

Instead of getting two decimal places after the point, I am getting three despite using the code format for two ("##.##"). Actually, this happens even if I remove the format code between the quotes. It is as if the program cannot see the format code. Why this happens ?

Here is the relevant program code:

private void convertButtonActionPerformed(java.awt.event.Action Event evt) {
double inputNumber = 0;
// sets the decimal format

[Code]....

View Replies View Related

Fail To Get A Resource In URL Format

Jul 8, 2014

I have inherited some code that is supposed to work just fine. The trouble is that when everything is rebuilt on my desktop, the projects crash. They all seem to crash at one particular part of code.

I pass it a string and the "getResource" or "getContentClassLoader" is failing.

[URL] ....

I guess one way to tackle this is to break it apart into segments.

View Replies View Related

Print Out GPA In Decimal Format

Oct 25, 2014

I need this program to print out the gpa down to 2 decimal places and I can't figure out how to do it. It keeps saying it can't find decimal format and I'm not sure how to define it.

Java Code:

import java.util.Scanner;
public class GPACalculator {
public static void main(String[] args) {
double creditHours = 0;
double gradePoints = 0;

[Code] ....

View Replies View Related

ArrayList To Presentable Format

Nov 19, 2014

The project is to basically make a song list, or playlist, and be able to sort it and search for songs and crap like that. The program works fine, but I want to have it print the playlist in a nice looking format. Here's how it looks now...

Amount of songs in playlist: 7

Current playlist:

Title Writer Singer Year Duration Genre
Back in Black AC/DC Brian Johnson 1980 4.18 Heavy Metal
A Call To Arms For Today Mattie Montgomery 2014 3.47 Religious
Fade To Black Metallica James Hetfield 1991 6.53 Metal
In The End Linkin Park Chester Bennington 2000 3.36 Other
Monster Paramore Hayley Williams 2011 3.2 Alternative
Over My Head The Fray Isaac Slade 2005 3.58 Rock
Through The Flames War of Ages Leroy Hamp 2008 4.2 Rock

The only reason the Title, Writer and Singer listings are lined up is because I manually spaced them out by guess and check method...I guess you can figure out how fun that would be with 20+ songs. So what I'm wondering is, is there an easier way to put this in a nice format where everything lines up? Kind of like how iTunes displays things.

Basically, I have three classes. Song, SongList and a Tester class. SongList takes various Song objects (the Song class defines one song with a title, write, singer, etc..) and puts them into an ArrayList. Then there's various methods for sorting by writer, sorting by genre, swap songs, etc. in the SongList class. Tester class just runs through an example of how everything works.

View Replies View Related

Fail To Get Resource In URL Format

Jul 9, 2014

I have inherited some code that is supposed to work just fine.

The trouble is that when everything is rebuilt on my desktop, the projects crash.

They all seem to crash at one particular part of code.

I pass it a string and the "getResource" or "getContentClassLoader" is failing.

[URL] ....

I guess one way to tackle this is to break it apart into segments.

View Replies View Related

How To Add Decimal Format Up To Two Places

Jul 25, 2014

import javax.swing.JOptionPane;
import java.text.DecimalFormat;
public class Sample3 {
public static void main(String args[]){
double amount,iRate,monPay,totalPay;
int years;
String amountStr;

[Code] ....

View Replies View Related

Fail To Get A Resource In URL Format

Jul 8, 2014

I have inherited some code that is supposed to work just fine. The trouble is that when everything is rebuilt on my desktop, the projects crash. They all seem to crash at one particular part of code. I pass it a string and the "getResource" or "getContentClassLoader" is failing.

View Replies View Related

How To Format Input File With Java

Oct 12, 2014

Is there anyway to format my input file "IF1.txt" into an excel/csv file, but with the content rearranged into a desired format? (all of this has to be done by a java program)

Here is the input file IFT.txt:

R1 : Integer,3 Food
R2 : Integer,3 ID
R3 : Integer,3 Temp
R4 : Integer,3 Weight
R5 : Integer,3 Age
R6 : Integer,3 Length

[code]...

Desired Output:

TIME Food ID Temp Weight Age Length
00:00:00.001 1 0 0 0 0 0
00:00:00.002 2 0 0 0 0 0

View Replies View Related

Program To Print In Decimal Format

Oct 24, 2014

so I need my program to print in decimal format and I keep getting an error saying that it cant find symbol "decimalFormat". here's what I have so far.

import java.util.Scanner;
public class GPACalculator {
public static void main(String[] args) {
int creditHours = 0;
int gradePoints = 0;

[Code] .....

View Replies View Related

Getting Number Format Exception When Trying To Use ParseInt

Feb 17, 2014

The problem occurs at the second to last line of text in this code.

* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/

package reversing_digits;
import java.util.Scanner;
public class Reversing_digits {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Scanner input = new Scanner(System.in);

[Code] ....

View Replies View Related

JSP :: How To Display Amount In Indian Format

Apr 30, 2014

i want to display a amount in indian currency format,

i.e=10000000=this iwant show is=1,00,00,000 rather than 10,000,000

View Replies View Related

Date Format Conversion In Java

Aug 3, 2014

I want to convert a date which can be of any date formats into yyyy-mm-dd format...My code is below.

String[] date_formats = {
"MM/dd/yyyy",
"dd/MM/yyyy"
,"dd-MM-yyyy",
};
String dateReceived = "13/11/2012";
for (String formatString : date_formats){

[Code] .....

View Replies View Related

Using Substring Methods To Format Numbers Between 1,000 And 999,999

Mar 20, 2015

Write a program that reads number between 1,000 and 999,999 from the user and prints it without a comma separating the thousands. Read the input as string. Find the length of the string and use the substring to break it into two pieces. Do not include the comma. You can then concatenate using the + symbol to reassemble without the comma. For example if the number is 123,456. First would equal 123 and second would equal 456. noCommaNumber - 123456.

I do not think it is required to only allow numbers in that range in the code. My question is how to get the first half of the number before the comma in a string to make the last line work. What I think is not doing what I need is the line String first = numberIn.substring(numberIn.indexOf(",", 0)); This is just the last thing I tried.Getting the second half is done using IndexLastOf method in the substring class javaforumquest.jpg

View Replies View Related

JSP :: Using JSTL To Format Date And Time

Jul 14, 2014

How to format this "2014-07-14T19:40:46" date to dd-mm-yyyy with time using jstl?

View Replies View Related

Currency Symbol Format - Only $ Will Be Reprinted

May 19, 2014

Java Code:

package billing.util;
import java.math.RoundingMode;
import java.text.NumberFormat;
import java.util.Scanner;
public class CurrencyFormat {
private static final int USD = 0;

[Code] .....

I should be able to use USD, CNY, and JPY. However it seems only the USD ($) will print... doesnt matter which currency symbol the user requests, only the $ will be reprinted....

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved