Reading A File And Splitting Certain Lines Into Arrays

Jan 30, 2015

Me and my mate are struggling to get our code to split a line in a text file which are separated by (":") and store into an array. We've managed to split each individual line into an array, but cannot work out how to do it with multiple splits over one line.

try{
FileReader fr = new FileReader("C:UsersTomDocumentsNetBeansPro jectsfootballA2_Tom_Tyler2srcukackingsto nci5100football_a2 om_mcLean_tyler_wattsmo delfootball_teams_phase1a.txt");
BufferedReader br = new BufferedReader(fr);
while(br.ready()){
String nextLine = br.readLine();
String[] fTArray = nextLine.split(",");
System.out.println();
for(String str : fTArray) {
System.out.println(str);
}
}

This code works but how would we do it for multiple splits over one line, along with this array?

View Replies


ADVERTISEMENT

Reading Pairs Of Lines From A File?

Jul 19, 2014

This what the data file looks like -

5165168416516988798484984984984984
9898798798798

1556516846516518498
51688484979789798798798491

The problem was to make code which will combine consecutive lines which contain some data into one line and print it. I made a solution that works.

import java.io.File;
import java.io.FileNotFoundException;
import java.util.NoSuchElementException;
import java.util.Scanner;
public class Filez {
public static void main(String[] args) {
File file = null;

[code]...

View Replies View Related

Not Reading All Lines While Comparing User Entered Name To The One That Exists In File?

Jan 21, 2014

Logic her eis when user selects option1, it asks for user to enter name and as soon as user enters name, it should compar name to existing names in txt file. I have user while loop and for loop but for some reason, it doesnt compare properly as there seems to be some mistake in looping and it just read first line or you can say single line rather than comparing it with all lines in txt file. i have attached votes.txt file with this. Also, if user doesnt exists infile, it will ask user to enter vote as yes or no and add it to file and then count total number of Yes and No votes from file and compare them.

my votes.txt file looks as below with two columns namely (name and vote).

Hiren No
samir yes
bob no
rikul no
master yes
patrick no
summer yes
bhanja no

package samples;

import homework.EmployeeA;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Scanner;

[code]....

View Replies View Related

Reading Point Objects From DRW File And Drawing Lines On Panel

Sep 15, 2014

I am trying to read Point objects from square.drw file which contains endpoints of line segments, and draw lines making a square on panel when I run the program. This is what I have got so far. How to get the points using array for drawing ?
 
// Initializing fields
private Point[] endPoints ;
FileInputStream fos;
ObjectInputStream oos;
int sampleSize = 0;
 
[Code] ....

View Replies View Related

Swing/AWT/SWT :: Reading Point Objects From DRW File And Drawing Lines On Panel

Sep 15, 2014

I am trying to read Point objects from .drw file which contains endpoints of line segments, and draw lines making a square on panel when I run the program. This is what I have got so far. how to get the points using array for drawing ?

// inside the method to read points objects from .drw file
try {
fos = new FileInputStream("square.drw");
oos = new ObjectInputStream(fos);
// creating an object of Point class
endPoints = new Point[sampleSize];

[code]...

View Replies View Related

Reading Data From A File And Putting That Data In Arrays

Feb 8, 2015

I am creating a program where it reads the data inside a file and then places this data into arrays. The file I created has numbers 1-30 in it, file named, testing1.txt .

Java Code:

public static void main(String[] args) {
// TODO Auto-generated method stub
// Variables Declaration Section
//******************************
BufferedReader br;
String sCurrentLine;
String str;

[Code] ....

My issue is that the 'str' value is not initialized, but if I initialize it, it ruins the code. I'm not sure what to do in the situation.

View Replies View Related

Splitting Zip File Into Fragments

Dec 2, 2014

I am developing a project where i have to split a zip file into fragments. Do we have any code for this splitting of zip files. I upload a zip file and it has to split into fragments and these fragments has to be renamed. I am having problem with splitting the zip file.

View Replies View Related

Splitting File Of 5GBs Into Manageable Chunks Of 5MB

Feb 21, 2014

I am new to a Java. I have a small project where I have a file of 10 million records of data located under d:/test/orders.csv

I would like to split this file into manageable file sizes of 5MB with the same name and be stored under a separate folder d:/test/output e.g

orders1.csv
orders2.csv
orders3.csv
..............

ordersn.csv

View Replies View Related

Splitting Numbers From TXT File In Order To Create Equations

Nov 7, 2014

I have a .txt file which i am currently using Scanner to input into the console, the text file contains the names of football games followed by their scores:

E.g. Man U : Liverpool : 2 : 1

I need to create an equation to add together all scores to create a string reading something like "total goals: 28" ....

View Replies View Related

Splitting Values From A File With String Tokenizer And Storing It In Another Class

Aug 26, 2014

I'm new to java. I have a Product class with getters and setters.

E.g. setProdType & getProdType

I want to store the values from a file into that

StringTokenizer token = new StringTokenizer(line,"**");
while(token.hasMoreElements()) {
int p.setProdType = Integer.parseInt(token.nextElement().toString());
}

View Replies View Related

Appending New Lines In A File

Jan 21, 2015

I have this part of the file.

class CreateFile implements ActionListener{ // MailOrderCreateFile.java
@Override
public void actionPerformed(ActionEvent ae){
String getDestination = txtDestination.getText();
file = new File(getDestination); // needed for Creating and Displaying the file
currentTime = txtCurrentTime.getText();
try {
FileWriter fw = new FileWriter(file);

[Code]...

What I wanted to do is that every time I press the button that will activate this part of the code, it will write to a .txt file defined in my txtDestination var (a JTextField). After the first time the file was created, it must append a new line every succeeding presses. However, everytime I do this, it just simply overwrites the contents of the .txt file. The example output would have been like this:

First time.

O R D E R D E T A I L S:
Time ordered: 01/21/2015 Wed 10:21:54 PM
Item number: 10
Item price: $4.59
Quantity ordered: 12,321
Total: $56,553.39

[Code]...

I've tried createDetails.write but to no avail.

View Replies View Related

Delete Multiple Lines From File?

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

Create A New Line On TXT File Between 2 Lines

Feb 6, 2015

Lets say this txt file contains 2 lines.

---------
hello
bye
---------

What would i have to do to insert a a piece of text in between hello and bye? I would like for the it to search for "hello", then add a line after it so it would look like :

-------
hello
newtext
bye
-------

I have these 2 methods that work as intended, but i just cannot seem to do what i've stated above.

Java Code: /**
* @param location
* Location of the .txt file.
* @param text
* The String to search for in the .txt file.

[Code] ....

View Replies View Related

Code To Open Up TXT File And Display Only First Five Lines?

Apr 7, 2013

I am trying to write a java code for a homework problem in my intro java class but im having problems. This is the problem:

Write a program that open the MyFile.txt and read from a file with these criteria.

1)-The program should display the first five lines of the file’s contents only.

2)-If the file contains less than five lines, it should display the file’s entire content. You must check for end of file and less than 6 lines on the loop iterations.

3)- your program should use loop to read the line by line of the file MyFile.txt.

The serperate myfile.txt has this

I can still remember, at the end of that year, we sat for the last time in our circle together. She played us her favorite song, "like a bridge over troubled water" and quietly passed out a gift she had made for each of us.She had made each of us a pottery heart with our name and the date on it on the back each read "I believe in ME".We all cried including her. She told us she would always remember US. We believed she would.

and this is what the code is suppose to look like after you run it : Java33.png

And this is what i have so far : Java22.png

what needs to go next to complete the javascript to show the first 5 lines of the text files?

View Replies View Related

Change Specific Lines In Text Inputted From A File

Nov 29, 2014

I can't seem to understand how to change certain line of text, inputted from a file. For this I really don't know where to begin. I have got the input from the file. But I want to change like very other line in the file. Can't seem to understand how this could be done. Is there away to access specific lines from the file and edit them? So far, i have this:

import java.util.*;
import java.io.*;
public class ChangeEveryOtherLine {
public static void main(String[] args){
//Constructing file object representing input file
File inputFile = new File("input.txt");

[Code] .....

View Replies View Related

How To Write / Save Multiple Lines Of Text To SVG File

Jul 2, 2014

I am writing to a file coordinates of texts using PathIterator (Java Platform SE 7 ) saved as SVG format i defined the Font attributes using AttributedString (Java Platform SE 7 ) and TextLayout (Java Platform SE 8 ). It is saving to the file and working properly, but it is just writing as a single line of text where is my target is multiple lines of text, i began using LineBreakMeasurer (Java Platform SE 7 ) Class, but some text is removed plus i got single line of text only, where i face the problem that , How to determine the width to get multiple lines of text ? i tried to figure out from this exampleDrawing Multiple Lines of Text (The Java - Tutorials > 2D Graphics > Working with Text APIs) where is drawing multiple lines of text but i am using getBounds().getWidth() of TextLayout object the code i tried

View Replies View Related

Remove Comment Lines From Input Java File?

Apr 8, 2014

I am trying to write a code to remove comment lines from the input java file.

I am getting an error -Exception in thread "main" java.lang.NullPointerException.

Whats wrong in the code. It is showing error- Exception in thread "main" java.lang.NullPointerException in- return new String(buffer),, and the word "String" everywhere present in the program.....

public static void main(String[] args) {String source = readFile("sorce.java");
System.out.println(source.replaceAll("(?:/*(?:[^*]|(?:*+[^*/]))**+/)| (?://.*)",""));
}
static String readFile(String fileName) {
File file = new File(fileName);

[Code] ....

View Replies View Related

Split Text File Lines Into Pieces And Put Them In Different Array Lists?

Mar 14, 2015

For example, if I had a text file with one line such as "first, second, third", would there be a way to make it so I could make "first" go to the first array list, "second" to the second, and "third" to the third?

I haven't posted any of my code so far as it wouldn't be right to be handed the finished code on a platter and I should put the work into it, but I'd just need a loop to make it go through the rest of the lines in the text file to add all the first, second and third parts of each line, right?

(I already know how to input data from a file, but not how to split up a line into bits to put into different array lists).

View Replies View Related

Read Lines With Specific Characteristics From A File / Exclude All Others Line?

Jan 16, 2014

I am trying to write method to read lines with some specification from a file. for Example,

my text file contains following:--

12-01-0113:26San Jose12.99DVD
12-12-3009:40Miami13.50Music
14-08-3010:20Arizona16.03Scientist
11-07-1009:10New York25.00ColdPlay
14-08-3010:20Arizona18.04MeetYou
14-08-3010:20Arizona50.03Scientist
11-07-1009:30New York25.00ColdPlay
11-07-1009:20New York25.00ColdPlay

tab separated values, for different columns and these are the lines only I want method to read.Now suppose if any is there as below, or even enter

12-01-0113:26San Jose12.99DVD
12-12-3009:40Miami13.50Music
14-08-3010:20Arizona16.03Scientist
11-07-1009:10New York25.00ColdPlay
14-08-3010:20Arizona18.04MeetYou
[new lines]
14-08-3010:20Arizona50.03Scientist
11-07-1009:30New York25.00ColdPlay
//This line should not be read
even this should not be read #$%^&
11-07-1009:20New York25.00ColdPlay

That particular line should be escaped. Till now I have done when the file format is proper, and it is as below:--
 
public static void main(String[] args) {
BufferedReader br = null;
String temp = null;
List<String> arrayRead = new ArrayList<String>();
try{
br = new BufferedReader(new FileReader("D: estingSalesData.txt"));

[code]....

View Replies View Related

How To Make A Text File Only Use Lines In A Text File Beginning With A Certain Letter

Mar 15, 2015

I have a program that reads lines of text, but some of the lines of text aren't applicable and break the program. I'd like to put a letter in front of the lines in the .txt file I want to use, such as a #.

I need to make an if loop that'll check for the first letter on the line being #, and use the line in the program if true and skip if false. I'm guessing a boolean variable would be useful here to be true or false depending on the presence of #, but I don't know how to only read the first letter of each line, how can I do this?

View Replies View Related

Adding Output For Both Valid / Invalid Lines In Text File Scanned?

Nov 9, 2014

I am a beginner . How to add output for both valid and invalid lines in text file scanned in java ...

View Replies View Related

Reading Text File Into Object Array And Create Random Access File

Dec 9, 2014

I am working on a project that requires me to build a database with random access file, representing products, the base product contains a name (about 30 characters), a price (double), and a quantity (integer). I have worked on this project for probably 15+ hours and have tried so many things and feel like I've barley made any progress...

The part i am really struggling with is taking the data from the text file and creating an object array with it using the product class. Once ive accomplished that, i have to use that data to create a random access file with the data. Here is the base Product class that must be used to create the objects for the array.

public class Product
{
public String pName;
public String stringName;
public double price;
public int quanity;

[Code]...

these continue for about 40-50 entries, they are not seperated by a blank line though i had to add those so it would display correctly, each entry is on its own line with name seperated with spaces, then price after a comma, then quanity after the second comma.....

View Replies View Related

Reading Text File Into Object Array And Creating Random Access File?

Dec 8, 2014

I am working on a project that requires me to build a database with random access file, representing products, the base product contains a name (about 30 characters), a price (double), and a quantity (integer). I have worked on this project for probably 15+ hours and have tried so many things and feel like I've barley made any progress...

The part i am really struggling with is taking the data from the text file and creating an object array with it using the product class. Once ive accomplished that, i have to use that data to create a random access file with the data.

Here is the base Product class that must be used to create the objects for the array.

public class Product
{
public String pName;
public String stringName;
public double price;
public int quanity;
//Constructor
public Product( String pName, double price, int quanity )

[code]....

and then here is the data from the text file that i must extract to use to create product objects.

Dill Seed,938,34

Mustard Seed,100,64

Coriander Powder,924,18

Turmeric,836,80

Cinnamon (Ground Korintje),951,10

Cinnamon (Ground) Xtra Hi Oil (2x),614,31

Cinnamon (Ground) High Oil (1X),682,19

these continue for about 40-50 entries, they are not separated by a blank line though i had to add those so it would display correctly, each entry is on its own line with name separated with spaces, then price after a comma, then quanity after the second comma.....

View Replies View Related

Data Read From File And Being Placed Into Arrays

Feb 8, 2015

I am creating a program where it reads the data inside a file and then places this data into arrays. The file I created has numbers 1-30 in it, file named, testing1.txt .

I am unable to post my code, it redirects me to a 'Page not found' page.

The problem with my program is a variable that I have initialized, is being said its not being initialized.

View Replies View Related

Reading CSV File

Jan 18, 2014

I have a CSV file with 16K entries of a data table. Does Java work well with CSV file? So I found this code. And it seems its quite easy to read in the data I need. Say for example if I wanted a loop to randomly pick the first field of a specific line in the CSV data table. How would i go about coding that??????

package cvs.test;
 
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
 
[code]....

The CSV looks like the above. and I basically would like to read in the Hand to get it to show in a text box and then randomly have the program ask me to correctly identify the True/False return for one of the SB/BB/UG/MP/CO/BN columns.

View Replies View Related

Reading A File Header / Hex?

Mar 3, 2013

how to get the first few hex symbols of a file in java, for example if i input a pdf into my coding i want my program to output, e.g "25 46 44 38" ....

I have been able to print out the hex of a whole file but not managed to set a maximum read limit so that my code only takes a certain amount of values ....

View Replies View Related







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