JSP :: Unable To Display And Delete Products In A File?
Sep 13, 2014
I am trying to update and delete products from a JSP page but am having a hard time getting the code to work. I keep getting errors and my program won't run. My Index.jsp page works, but everything else is messed up. Below is my code.
index.jsp
<%@page contentType="text/html" pageEncoding="windows-1252"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
[code]....
View Replies
ADVERTISEMENT
Jun 3, 2013
I am trying to delete cookie using the following steps:
if(a==a){
cookies.setMaxAge(0);
cookies[i].setPath("/");
cookies[i].setDomain(".example.com");
}
But, when i am using CookiesManager+ to view the cookies i am not seeing that the cookie is getting removed/deleted.
View Replies
View Related
Jul 11, 2014
I'm trying to write data for three products to a random access file, but I have a problem. Each product has a code and a price. After writing them to my file, I want to get to the second field or product. I do this by getting the length for each record, and multiplying it by the field number I want to go to. I use the result for the seek() method of the RandomAccessFile object. It is giving me an EOFException, but when I use 0 for the seek method i get the data for the first poduct or field.
Java Code:
public static void main(String[] args) {
final int RECORD_LENGTH = 16;
try(RandomAccessFile productsOutput = new RandomAccessFile("C:UsersalfonsoDesktopBinaryTestRandom.ran", "rw")) {
String[] codes = {"java", "jsps", "txtp"};
double[] prices = {49.5, 19.9, 29.9};
for(int i = 0; i < codes.length; i++) {
[Code] .....
View Replies
View Related
Feb 3, 2015
To delete "the" from string and display the new string
my input------ the dog
required output--------- dog
my output-------------------thedog
Code :
import java.util.*;
class the
{
public static void main(String args[])
{
Scanner in=new Scanner(System.in);
System.out.println("Enter a sentence");
String s=in.nextLine();
[Code] ....
View Replies
View Related
May 21, 2014
I have a text file with the below details and we get the input as name CONNECTION_PORT and we need to delete the matching global variable which as CONNECTION_PORT and keep the remaining global variable in file without using any temp files.
for example
input:
CONNECTION_PORT
Text file
<globalVariable>
<name>CERTIFICATE_PASSWORD</name>
<value>fgfdgfgf</value>
<deploymentSettable>true</deploymentSettable>
<serviceSettable>false</serviceSettable>
<type>Password</type>
<modTime>1398834966045</modTime>
[code].....
View Replies
View Related
Jun 8, 2014
I have a method that checks to see if a file exists, if so, it reads the data contained therein, if not it calls another method then exits.
public void checkLoadPreviousStationStatus() throws FileNotFoundException, IOException,
ClassNotFoundException, EOFException, TempArrayOutOfBoundsException{
File f = new File(staFileName);
//if station file already exists load the info
if(f.exists() && !f.isDirectory()){
[Code] ....
My question, do I need to delete this file before exiting the method f.delete();? If not, what happens to it when I exit the method?
Memory recalled from a long ago taken c++ class: It's just reserving a memory location that will or will not be used isn't it? If nothing is stored in that location the reservation goes away right?
View Replies
View Related
Dec 3, 2014
I have one jsp page in which I have listed some service records fetched from Database. I have made one of the column, for eg. Service ID to be link, which should display all the details of that service when clicked. I want those details to be displayed in lightbox. I tried doing it but when any service ID link is clicked, it displays same(First Service in record) service details.How do I pass reference of that current service to lighbox effect.
View Replies
View Related
Jan 22, 2014
i am using eclipse kepler and tomcat 7 with the below code to get a response from the browser. i get no errors on my code and i organize my imports but when i run the code i get an http 404 error. i restart the server and it goes into the whole motion telling me that "Tomcat v7.0 Server at localhost started and is synchonized" i refresh it and i still get the error.
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
[code]....
View Replies
View Related
Mar 14, 2014
When I am invoking a servlet class file from my HTML file instead of displaying output in my browser it is downloading my output as a file..Why it is?..
View Replies
View Related
Mar 20, 2015
I am trying to display rows from my database from servlet by passing it to a JSP, but nothing is displayed. I checked the syntax and even the source of the page shows that it gets the data but the rows are not displayed!
My servlet (serv.jsp)
package Pack1;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
[Code]....
My JSP (SP.jsp)
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Search Page</title>
</head>
<body>
<h1>TITLE</h1>
[Code]....
My servlet file is in the Pack1 package under Source Packages and jsp file is under Web Pages.
View Replies
View Related
Apr 14, 2014
This is the code that i have used to delete particular String from text file. It works absolutely fine on eclipse and netbeans.. But on deployment(in tomcat) it fails to delete message/rename or delete original file even though all permissions for modifying the files in the folder has been given to all users.
This is my code:
package com.pro.model;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
[Code] ....
View Replies
View Related
Oct 17, 2014
I'm trying to read a xml file and delete it's contents. I do this by reading the file,writing it to a temp and then overwriting the original with the temp by renaming it
//overwrite original xml file with new file
boolean successful = outputFile.renameTo(inputFile);
System.out.println("success");
It does say the value of the local variable is not used however. I've debugged to ensure it hits the code it always prints out the line after too.It just does not overwrite my original xml file with the temp one.
It's had votes on stack so I thought that would of been reputableStack - overwrite but the second one got voted as a good answer. But still I would like to know if my code can work or not.
View Replies
View Related
May 3, 2014
My Code:
import java.io.PrintWriter;
import java.text.DecimalFormat;
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
[Code] .....
It's suppose to store the products and how many you type in there (the quanitity).
View Replies
View Related
Mar 18, 2014
Write a class named FileDisplay with the following methods:
1.) constructor: the class's constructor should take the name of a fil as an arugment.
2.) displayHead: This method should display only the first five lines of the file's contents
Here is the following code I have made so far
import java.io.*;
public class FileDisplay
{
private String filename;
public FileDisplay(String Filename) throws IOException
[Code] ....
First, in my constructor I have taken in an argument and used that argument to open up an output file. Meanwhile, I'm trying to work n the displayhead method to print out information and to read data to. I haven't opened up my input file yet, but I'm not understand how can I read a print data to an output file. in
public void displayHead()
{FileWriter file=new FileWriter(Filename)}
do I make create another instance of the filewriter class to output data?
In simple words, suppose to I want to display some messages on my output file in the displayhead function. Since I already have opened up the file in the constructor, how do I combine that in this method...
View Replies
View Related
Feb 11, 2015
Write a program called ProductCatalog that prompts the user to enter the number of products in the product catalog. The program should then prompt the user for the name and the price of each product in the product catalog. Once all of the products have been entered, the program should output the product information (name and price) of the most expensive product in the catalog. Your solution must use a for loop repetition structure and should use the Product class included in labfiles05.zip to keep track of the product with the highest price. Here is sample output:
Enter the number of products: 3
Enter the name of product 1: iPod
Enter the price of product 1: 158.99Enter the name of product 2: iPad
Enter the price of product 2: 518.99
Enter the name of product 3: iPadMini
Enter the price of product 3: 304.49
Most Expensive: Product [name=iPad, price=518.99]
Your solution should not use an array to keep track of all the product information entered.
I am having trouble with my code, with the For loop and then calling the methods from the Product class into the ProductCatalog. How should I approach this program.
Here is the Product program.
public class Product
{
private String name;
private double price;
public Product(String theName, double thePrice) {
name = theName;
price = thePrice;
[Code]...
Here is the ProductCatalog class where I call the methods from Product class. The For loop is what I am having trouble with as well.
import java.util.Scanner;
public class ProductCatalog
{
public static void main(String[] args) {
double number;
String product = " ";
double productCount = 0;
[Code]...
View Replies
View Related
Dec 3, 2014
We're told to make a cash register program for 5 products using Java. It loops until "-1" is entered on the "Continue?" input dialog box.There should be a:
1. Main Menu - where the user will pick what to buy (one product at a time) like the sample code below and prompt the user if he will buy another product or not. If yes, the program will go back to the main menu to buy another product and if not, continue to the program. And it looks something like this: LEvFOwQ.png
2. Receipt - at the end of every transaction.
3. Daily Sales Report where it shows all receipts then grand total like:
Transaction 1
-subtotal
Transaction 2
-subtotal
and so on then,
GRAND TOTAL
4. Inventory Report where it shows the Items Available before the Selling, Items Sold, and Items Available after Selling in table format.
Below is the code for a simple cash register for only one product that I made but I need to upgrade it for it to work for 5 products. That code will serve as the basis for this program.make the switch or if-else statement for the main menu first and if I got it right I try doing the rest.
int userQty1 = Integer.parseInt(JOptionPane.showInputDialog(
"Product ID Product Name Product Quantity Product Price"
+prodID1 + " " +prodName1 + " " + prodQty1 + " " +prodPrice1 "
"
+ and so on until prod5));
[code].....
View Replies
View Related
Mar 9, 2014
I had started a web project in java with eclipse.....The problem is I am unable to get a css file linked to the jsp page I have designed.... The following is my directory structure:
theFacebook
-WebContent
-----css
--------style.css
-----jsp
--------index.jsp
-----images
--------facebooklogo.jpg
--------fevicon.ico
-----META-INF
-----WEB-INF
and the link tags I have used in my jsp file are as follows:
<link rel="shortcut icon" href="/theFacebook/WebContent/images/favicon.ico"></link>
<link rel="stylesheet" href="//WebContent/css/style.css" type="text/css"></link>
<img src="/theFacebook/WebContent/images/facebooklogo.JPG"/>
When I deploy the jsp file in Tomcat it shows the HTML page as it is with no effect of the CSS whatsoever with none of the three tags working.
View Replies
View Related
Nov 27, 2014
You are given a text. Write a program which outputs its lines according to the following rules:
If line length is ≤ 55 characters, print it without any changes.
If the line length is > 55 characters, change it as follows:
Trim the line to 40 characters.
If there are spaces in the resulting string, trim it once again to the last space (the space should be trimmed too).
Add a string... <Read More> to the end of the resulting string and print it.
I felt as if I did do what they were asking, but for some reason, I'm getting "Sorry, Unable to read file!"."Instead of using file, I did use the location of the file name".Also, I've attached a image of the input looks like and the output.
My CODE:
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
public class Main {
public static void main (String[]args)
{
try{
[code]....
View Replies
View Related
May 6, 2014
I am facing a problem while executing a task. My task is to make such a code which will search for my source code file (abc.java) in all directories and then displays the code in textarea inside frame and along with that i also have to display the path of the file in text field. I have coded something but i am really not getting anywhere near my task.
import javax.swing.*;
import java.awt.*;
import java.io.*;
import java.util.*
public class Lab extends JFrame {
[Code] ....
View Replies
View Related
Dec 22, 2014
i am not able to save .java file. it says need administrator access, but i am logged in as an administrator account.
View Replies
View Related
Dec 4, 2014
iam trying to sum all the integers in a binary file. the integers are 0-9. IAM having trouble exiting the while loop to display the sum. below is what i have so far which is not displaying the sum.
import java.io.*;
public class binaryAdd{
public static void main(String []args)throws IOException{
DataOutputStream output= new DataOutputStream(new FileOutputStream("myBinary.dat"));
for(int i=0;i<10;i++){
[Code]...
View Replies
View Related
Aug 1, 2014
In jsp, In windows 7 , IE 11 , I am able to get the downloaded file but still unable to open it.
View Replies
View Related
Jan 20, 2015
on my computer, i have configured the environment variables as
CATALINA_HOME : D:apache-tomcat-8.0.9-windows-x64apache-tomcat-8.0.9;
CLASSPATH : D:apache-tomcat-8.0.9-windows-x64apache-tomcat-8.0.9libservlet-api.jar;D:apache-tomcat-8.0.9-windows-x64apache-tomcat-8.0.9libjsp-api.jar;.;
JAVA_HOME : C:Program FilesJavajdk1.8.0_05
path : D:apache-tomcat-8.0.9-windows-x64apache-tomcat-8.0.9in
In reference to the book "Head First Servlets and JSP, 2nd edition", chapter-3(), page-81, the command to compile the servlet file to the desired location is
javac -classpath UsersertApplications2 omcatcommonlibservlet-api.jar:classes:. -d classes src/com/example/web/BeerSelect.java (from the Myprojects/beer-V1 directory)
Whereas I have written
javac -classpath D:apache-tomcat-8.0.9-windows-x64apache-tomcat-8.0.9libservlet-api.jar;classes;. -d classes src/com/example/web/BeerSelect.java
(from the same directory as can be confirmed from the attachment of screenshot of error). this code is in accordance to the location of the respective files in my system, in particular the servlet-api.jar file.
After doing this, my computer is showing the error : file not found.
How do I resolve this? Actually, I don't understand completely what this code is trying to accomplish.
View Replies
View Related
Mar 14, 2015
I have the file in my project sitemap.xml, which i am trying to write via XMLStreamWriter. My code gets successfully executed as i can see the logs. But my sitemap.xml file keeps blank. Why nothing is getting write in my sitemap.xml file. Below is my servlet code.
@Override
protected void doGet(SlingHttpServletRequest request, SlingHttpServletResponse response)
throws ServletException, IOException {
logger.info("request.getResponseContentType() ::: " + request.getResponseContentType());
logger.info("root path is :: " + rootPath);
if (request.getResponseContentType() == null) {
[Code] ....
I can see "END Document" and "Location is " under my log file.
View Replies
View Related
Nov 6, 2014
I'm trying to pass the form parameters from one JSP. to other using AJAX but my output JSP is only showing [object HTMLInputElement] [object HTMLInputElement] error. Im new ajax.
My JSPForm
<%--
Document : AjaxForm
Created on : Nov 2, 2014, 11:25:49 AM
Author : Amar
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
[Code]...
My output Form
<%--
Document : FormOut
Created on : Nov 2, 2014, 12:02:10 PM
Author : root
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
[Code]...
View Replies
View Related
May 8, 2014
<%@ page import="javax.print.*"%>
<%@ page import="javax.print.attribute.*"%>
<%@ page import="java.io.*"%>
<%out.println("Printing...");
String filename = "c:/20140505_3_40.txt";//this is the text file i want to send to printer
// am using tomcat 8
PrintRequestAttributeSet pras =
new HashPrintRequestAttributeSet();
[Code]...
View Replies
View Related