PrintWriter - Ask User For The Names Of Two Files
Jun 30, 2014
Write a program that asks the user for the names of two files. The first file should be opened for reading and the second file should be opened for writing. Ihe program should read the contents of the first file, change all characters to uppercase, and store the results in the second file. The second file will be a copy of the first file, except that all the characters w ill be uppercase. Use Notepad or another text editor to create a simple file that can be used to test the program
Here is my code. I Also made two text document files that are located in the same directory as the .class file (the code file) that are named OriginalFile and UpperCase respectively. Please let me know what I need to do. Here is the code.
import java.util.Scanner;
import java.io.FileReader;
import java.io.IOException;
import java.io.PrintWriter;
public class UpperCaseFile
{
public static void main (String [] args) throws IOException
{
[Code]...
View Replies
ADVERTISEMENT
Nov 9, 2014
Program is running fine. I can create usernames and everything but somehow I cannot quit or exit the program when I enter my sentinal value "QUIT". Here is my program question: Create an application that will create a username for a school computer system. Input a user’s first and last name. The username will be the first letter of the first name followed by the first 5 letters of his last name followed by a random 3 digit number. Continue to create and display usernames until a sentinel value is entered.
import java.text.*;
import java.util.Random;
import java.text.DecimalFormat;
public class username
[code]...
View Replies
View Related
May 21, 2015
I am trying to write a java program that asks the user for a list of names (one per line) until the user enters a blank line. At that point the program should print out the list of names entered, where each name is listed only once (i.e., uniquely) no matter how many times the user entered the name in the program. I am supposed to use an ArrayList for this problem.
My idea for a solution is to create an ArrayList<String>, read each name, i.e., line, entered and then to see if that name is already in the ArrayList. I created a for loop to check each element in the ArrayList but when I try to assign an element to a string variable I get the error "Type mismatch: cannot convert from Object to String". Not sure why that is happening because the ArrayList is defined as a String list.
Here is the code so far.
/*
* File: UniqueNames.java
*/
import acm.program.*;
import java.util.*;
[Code].....
View Replies
View Related
Apr 13, 2014
This application is supposed to allow a user to enter the names an phone numbers of up to 20 friends, until the user enters "zzz" or 20 names. Then the console is supposed to display the names and have the user enter a name to get the phone number. Here's my code:
import java.util.Scanner;
public class PhoneBook{
public static void main(String[] args){
String name;
int phoneNumber;
final int nameAmount=20;
[Code] ....
I can't seem to get it correct, every time I correct a compiler error, another set of them appear.
View Replies
View Related
Sep 24, 2014
Using Bluejay. Need code that prompts user to enter 5 test scores and their names. Calculate the average and display.
First initial and last name , 5 test scores, and average
View Replies
View Related
Mar 21, 2014
How to allow the user to select several files from one folder in the JFileChooser and copy them in a subfolder in the same folder, or another folder?
View Replies
View Related
Feb 17, 2015
You are given a file containing the names and addresses of company employees from many years ago that your manager has asked you to import into a database. You can use a CSV file and your database application to load the file, but the file your manager gave you was exported from an old, non-standard accounting system. Here is its format:
Fred|Flintstone
1212|Bedrock
Austin|Texas
Harry|Potter
1234|Hogwarts Road
[Code] .....
View Replies
View Related
Dec 6, 2014
I'm tyring to print the same output in console to a text file, but I can only get the last line of the console output in the text file, not sure what is wrong with my code:
while (in.hasNextLine()) {
PrintWriter writer = new PrintWriter("output5.txt");
tempS = in.nextLine().toLowerCase();
System.out.println(wp.bestPages(tempS));
[code]....
What's causing only the last time to be printed in text file? Are there better ways to print console outputs into a text file than PrintWriter?
View Replies
View Related
Apr 12, 2014
I've written a simple html/servlet program that has a user enter their name and password on a form and then either register or login using a submit button. I have the program working, except when a user doesn't fill in either of the text fields I can't figure out how to get it to print to the page. Right now I just have it printing to my Eclipse console which is not what I want. What am I missing?
HTML code:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!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=ISO-8859-1">
<title>Cookies</title>
[code]....
View Replies
View Related
Nov 9, 2014
i've got this code that i cant get to work as i want it to. when its exported and i run it the file i wants gets created but when i open the file there is a single number like 999998000001
import java.io.IOException;
import java.io.PrintWriter;
public class mainHej {
public static void main(String arg[]){
[code]...
View Replies
View Related
Aug 20, 2014
If I am using the File object to read a file and PrintWriter object to write to a separate file, can I use them under one method. Or is the File one method and the PrintWriter another method?
View Replies
View Related
May 1, 2015
I thought you can use PrintWriter to write to the console but when I run the following code I only get "abc" printed to the console.
import java.io.*;
class Class1{
public static void main(String...abc) throws Exception{
PrintWriter writer = new PrintWriter(System.out);
writer.println("test");
System.out.println("abc");
}
}
View Replies
View Related
Oct 24, 2014
How to write a new file:
import acm.program.*;
import java.io.*;
import java.io.PrintWriter.*;
import acm.util.*;
import javax.swing.*;
public class PrintWriter extends ConsoleProgram {
public void run() {
try {
PrintWriter wr = new PrintWriter( new FileWriter ("hello.txt") ) ;
wr.println("Hello world!");
wr.close();
} catch (IOException er) {
println("File could not be saved.");
}
}
}
(I added the imports at top myself.) However, I am getting compiler errors for the lines: PrintWriter wr = new PrintWriter( new FileWriter ("hello.txt") ) , which says that the constructor PrintWriter( FileWriter ) is undefined, and
wr.close();, which says close() method is undefined.
Pretty sure the only real problem is that PrintWriter is not accepting the FileWriter as constructor, but I don't see why. I have tried this on machine with JRE 1.4 and it worked as expected, creating new file titled "hello.txt", prints line of "Hello world!" in that file, and saves it to the directory I picked in the dialog. But I can't get it to work on this machine that uses Compiler 1.6, Java Runtime v8u25.
I have also tried using just a string in the parameter for PrintWriter, such as PrintWriter wr = new PrintWriter ("hello.txt") , and from what I can tell by reading the java spec for java 8, this should work. [URL] .... But I get error message for that constructor as well.
View Replies
View Related
Oct 25, 2014
I am creating a car simulator that simulators the odometer and fuel gauge on a car. I want to print the results to a text file but it seems to be printing only the last two lines instead of all of them. How can I make it so it doesn't overwrite the previous input?
Here's my main method:
public static void main(String[] args) throws FileNotFoundException {
CarInstrumentSimulator carInstrumentSimulator = new CarInstrumentSimulator();
FuelGauge gas = carInstrumentSimulator.new FuelGauge();
[Code].....
View Replies
View Related
Dec 8, 2014
I have done lots of PrintWriting before but this is the first time I have done it on my new computer and I'm having an error I haven't seen before. This is my code:
Rprint(){
try {
PrintWriter pout = new PrintWriter(new FileWriter("C:UsersJackDocumentsexample.r "));
pout.println("nums = c(1,2,5,6,8,10)");
pout.println("nums");
pout.close();
} catch (IOException ex) {
System.out.println("Error!");
Logger.getLogger(Rprint.class.getName()).log(Level .SEVERE, null, ex);
}
}
*** java.io.FileNotFoundException: C:UsersJackDocuments
This.txt (The filename, directory name or volume label syntax is incorrect) ***
I have a feeling it may be to do with permissions, because it lets me print simply ("example.r") into my project folder.
View Replies
View Related
Apr 29, 2015
private static void getTablas(int num) {
//ciclos anidados
System.out.print("x");
//linea horizontal
for (int i = 1; i <= num; i++) {
System.out.printf("%3d ",i);
[Code] .....
View Replies
View Related
Jun 13, 2014
Does printwriter always truncates the existing file to 0 size before adding any new data ??
View Replies
View Related
Oct 26, 2014
What step to know to develop software..
View Replies
View Related
Apr 13, 2015
In a program I created, I'm using a text file that contains some texts needed for the program. The method relevant to this is something like the following.
private String wordgen(){
try {
BufferedReader reader = new BufferedReader(new FileReader("src/Resources/adjectives.txt"));
Random rand = new Random();
int low = rand.nextInt(400);
String fil="";
int i=0;
while(i!=low){
[Code]...
The program runs fine in netbeans project but once the jar is created it does not corporate with the text file. ("null" is returned) How can I attach text files to jar and exe?
View Replies
View Related
Nov 7, 2014
This is a college course assignment that consists of classes TotalSales and TotalSalesTest.In the main program I have created a two dimensional array to output a columnar layout with cross-totals in 4 rows and 5 columns. This program outputs sales totals by row for each sales person(1 - 4) and output by column for products(1 - 5). I have created extra elements in the array to store total for rows and columns. So far both classes compiles. The problem is that although the PrintWriter creates a notepad file, it doesn't print to it. I don't seem to understand the input and output methods completely. I finished another program similar to this using basically the same try and catch that read the file and printed out a document in notepad. Here is the code and I'll try include the input file.
import java.util.Scanner;
import java.io.*;
public class TotalSales {
private int salesPerson; //declare class variable
private int productNumber;//declare class variable
[code]....
View Replies
View Related
Mar 10, 2015
I need to transformation the txt files into xml files, but each row txt files don't have same elements, for example the first book is composite one author
<books>
<book>Title</book>
<price>price</price>
<author>Author</author>
</books>
but the second book is composite two author
<books>
<book>Title</book>
<price>price</price>
<author>Author</author>
<author>Author2</author>
</books>
I would have the xml files with the number of authors variables, I can use JAXB for my problem?or not?
View Replies
View Related
Oct 2, 2014
I have 2 enums like below
enum enum1{
TEST_1("name_1","name 1"),
TEST_2("name_2,"name 2");
private String name;
private String description;
[Code] .....
How can i map the same names in 2 enums and get message from enum 1 and code from enum 2.
View Replies
View Related
Jan 22, 2015
In my project I had to create 2 classes, Room and Animal.
Room had to have an array (NOT arrayList-I know theyre better and easier but I need to use an array, for now) This array must be able to be populated by 10 "Animals", and the Room class needs two methods, a method to add animal a to the room (rooms array) and a toString() that returns the name of the room and the names of the animals in the room. The teacher added a hint saying that this toString() should reference the animal classes toString()
Here is my code thus far:
public class Room {
private String name;
Animal[] inRoom = new Animal[10];
public Room(String roomName){
name = roomName;
} public void addAnimal(Animal a){
for(int i = 0; i < 10; i++){
[code].....
View Replies
View Related
Jan 17, 2015
I'm trying to implement a spreadsheet-like table using JTable and this is the basic structure.
String[] colnames={"A","B","C","D","E"};
String[][]data=new String[28][5];
sheet = new JTable(data,colnames);
//sheet.setBounds(10, 36, 527, 214);
JPanel tablepane=new JPanel();
tablepane.add(new JScrollPane(sheet));
tablepane.setSize(800, 400);
In a spreadsheet, alphabetical letters are column names and numbers represent rows. I have named the columns and I need to name the rows in the same way. Or if I am to set the first column in every row as row headers, how can I make then non-editable by the user? In addition to that, how can I make the table appear bigger? There's a lot of space but the table appears to be small.
View Replies
View Related
Oct 1, 2014
I'm new on Java/android and I wounder how could I get name of each control in a layout, ex.
for (int i=0;i<table1.getChildCount();i++ ) {
Object child=table1.getChildAt(i);
if( child instanceof EditText)
{
//get control name here
}
}
View Replies
View Related
Feb 2, 2014
I'm trying to use the DataFactory class to pull in a list of names, as I need to populate my app in development with randomized test data for testing.
DataFactory
So, I can get a random name like so:-
package domainentities;
import java.util.Random;
import java.util.Collections;
import org.fluttercode.datafactory.AddressDataValues;
[Code] .....
But - it always prints 'Lindsey'. I need a way of completely randomizing but I can't see the class has a method to let me do this? I can use the randomize method but this takes an int argument which will always bring back the same index value (same name).
I wonder if I am over complicating this. I can use a simple String array of names, but I don't want, like 10,000 names in my array and I want a good way of generating good, randomized data. Perhaps a .csv file of names could be read in? Here is a second method I wrote but I don't have the skills to know how to read the array values from my large .csv file:
public String randomSecondName(){
String[] lastNames = {"Smith", "Jones", "Collins","Jackson",
"Dearsley", "Trump", "Carr", "O'Connell", "Dyer", "Furstzwangler" };
Random ran = new Random();
String lastName = lastNames[ran.nextInt(lastNames.length)];
return lastName;
}
View Replies
View Related