0
votes
1answer
20 views

Path For XMl File in Java

I don't normally post on these sites as usually you find find what you're looking for somewhere on the net. however, after reading every single word of the documentation and reading about a million ...
1
vote
2answers
48 views

Gaining control on the name of the temp file created in Java

Is there any way to control the random digits appended to a file name when a tempFile is created ? For eg. if I write File.createTempFile("abc",".pdf"), it creates a file with name ...
-3
votes
0answers
43 views

How to find end of rows and columns in a text file in java?

In my text file, I have rows and columns of data.. How do I iterate it in a loop...like.. for(i=0; here,iterate until the last row(or end of the text file) is processed;i++) { for(j=0;iterate until ...
0
votes
2answers
66 views

FileNotFoundException while creating a file with java in Ubuntu?

I have been trying to convert millions of xml documents to txt files. After reading each xml I parse the required content and write it into a new text file in a new drectory. But when I process some ...
0
votes
4answers
64 views

Turning a string into multiple arrays?

I'm a student who is learning java (just started this year. I just graduated so I can't ask my high school teacher for help, either), and I need some help on how to turn a string into multiple ...
-2
votes
0answers
29 views

Searching for a record using a single entity in a file [closed]

I have a file that has the following data(name,id,age,D.O.B), I want my code to be able to search for a record in a file using either its name, id, age etc and then display records that contains what ...
0
votes
0answers
35 views

Upload file in a location specified in tomcat server.xml conf

I have an upload form and I would like to save the file in my filesystem. First, I tried to create the path where the uploaded file will be saved: File dest = new File("/front/uploads/images"); ...
0
votes
1answer
27 views

file upload excel exception

I have a problem in uploading excel file, my Java code below File newFile = new File("C:/sample.xls"); int firstColNo = 0; int row = 0; Cell cell; Workbook wb = Workbook.getWorkbook(newFile); Sheet ...
2
votes
2answers
45 views

Java. How to append text to top of file.txt

I need to add text to beggining of text file via Java. For example I have test.txt file with data: Peter John Alice I need to add(to top of file): Jennifer It should be: Jennifer Peter John ...
1
vote
1answer
36 views

new File() with enviroment variables in Java

How to get a File java object from its path string with enviroments vars? For example: new File("%SYSTEM_ROOT%/file.txt") or new File("${SYSTEM_ROOT}/file.txt")
0
votes
0answers
44 views

How to recover lost source code [migrated]

So I had just started doing a lot of java development off of one of my thumb drives for portability and constant access to my most recently worked on version of some piece of software and things were ...
1
vote
3answers
40 views

Exception with ObjectInputStream while reading, and reaching the end of the file

I'm doing a schedule book, and I'm saving a .txt all my objects, that works fine, the problem comes when I read them, my program reads , when the end of the file comes, my program doesn't know what to ...
0
votes
7answers
50 views

How to find certain words in a text file, then find numbers in java

OK, so I have the following text file (answers.txt): Problem A: 23|47|32|20 Problem B: 40|50|30|45 Problem C: 5|8|11|14 Problem D: 20|23|25|30 So basically, what I need is ...
0
votes
1answer
28 views

jar file not properly finding the files

I have spent the past 3 nights going crazy trying to find an answer to this. So I have a java program and I want it to be in a jar format and I want it to be able to read in text and image files. I ...
0
votes
2answers
38 views

Eclipse Class File won't open in java editor?

I've been using eclipse a very long time but I've never encountered this problem. I have a program I'm working with, and normally to navigate between class files you can simply double click the class ...
-1
votes
1answer
39 views

java (matcher.group()) - write to file

I have code that finds coordinates between specific words. Now, output to console works perfect, but id like to output the matches found TO FILE My current code: public class Filetostring { public ...
0
votes
2answers
29 views

Multiple files argument to main function

I want to process multiple text files ( eg. compare 2 files) and pass the files as argument to the main function. How do I do that ? How to I pass multiple files arguments from the command line? ...
1
vote
1answer
28 views

Android : How to synchronized resource in right way

My application sometimes should read and write to file. And this work might happen in multithread, so I should synchronize those resource. Here is my code : // write to file FileOutputStream fos = ...
-1
votes
4answers
42 views

How to save the text file in a path given by JFileChooser?

I need to save a text File which is already created in a particular path given by JFileChooser. What I do basically to save is: public void actionPerformed(ActionEvent e) { JFileChooser chooser = ...
0
votes
2answers
33 views

Java XML practice

I have an application that receives weather information every x seconds. I am wanting to save this data to an XML file. Should I create a new XML file for each weather notification, or append each ...
0
votes
2answers
46 views

Read from file on JButton click

I'm having an issue with my java project. I've done my homework through searches and reading and I can't seem to find what I need. What I need to be able to do is each time I click a button, read a ...
1
vote
2answers
32 views

struts 2 file upload without struts tags

Do I need to make use the struts tags <s:form action="doUpload" method="post" enctype="multipart/form-data"> <s:file name="upload" label="File"/> <s:submit/> ...
1
vote
1answer
25 views

Cannot Figure Out Why Audio File Is Not Playing (Java)

Kind of a noob to coding, but I've been creating Pacman for a computer science class, and for some reason, I cannot get my audio to work. Basically, here is the just of what I have written. public ...
-4
votes
0answers
35 views

Offline login system [closed]

Ok, I am making 2d java game and I am writing a login system with accounts for it. The problem is because the game will need to be bought before played what if the user temporarily cant connect to ...
-1
votes
1answer
20 views

Android - Failed to Unzip Files

I've been using the unzip code found on this website. The code should be perfectly working, and able to unzip folders/subfolders. The problem is when I run the code, it gives me errors on logcat: ...
1
vote
0answers
23 views

JMF Music Player

I'm trying to create a simple mp3 player by the JMF library for a school project, but I always have this error. The path to the file is correct. java.lang.NullPointerException at ...
-2
votes
1answer
53 views

After reading a file how to read line from a such postion (java)

This code can read many files and display them in a textarea. For example : ...........> 12 16 17 18 ...........> 15 17 ab cd ...........> ad 2g at bc I want to read files but only after the ...
0
votes
1answer
21 views

Save into the file with value instead of placeholder

I use Apache Velocity, so I have a *.vm file, the content of which "Hello $name". Velocity.init(); VelocityContext context = new VelocityContext(); context.put("name", "Velocity"); StringWriter w = ...
0
votes
2answers
17 views

Java Fill preallocated File with Data (on drive)

i want to download a videofile from the web. It is 121 MB. Now i want to pre allocate this 121 MB on the disk (with zeros or what ever) and fill it step by step with the data of the inputstream from ...
1
vote
4answers
36 views

Is it necessary to close a FileWriter, provided it is written through a BufferedWriter?

Consider a BufferedReader as below: writer = new BufferedWriter(new FileWriter(new File("File.txt"), true)); In this case at the end of the application, I am closing the writer with writer.close() ...
-1
votes
1answer
17 views

How to get client files in java bean (ADF)?

I develop a web application using JDeveloper. Then, My scenario is I want to get a file from client directory(e.q C://Image.jpg). What I want to achieve is the client's directory defined ...
0
votes
2answers
54 views

Extracting the file name from the variable dynamically

I have a query a method in which the parameter is coming as file name that upon debugging I have analyzed, as shown below: private processfile ( string filepath) { } Now this file path can be ...
0
votes
2answers
33 views

How to use NIO to write InputStream to File?

I am using following way to write InputStream to File: private void writeToFile(InputStream stream) throws IOException { String filePath = "C:\\Test.jpg"; FileChannel outChannel = new ...
0
votes
2answers
53 views

Get the directory inside the jar

How to get the directory inside the jar? Let's say I have a jar called foo.jar, how can I make the jar be able to access a file that's like this foo.jar!/text.txt, whereas the class is like ...
0
votes
2answers
32 views

is this correct ? how to load bytes from a file? [duplicate]

I need to load bytes from a file using Java. is this right ? InputStream ips=new FileInputStream(file); InputStreamReader ipsr=new InputStreamReader(ips); BufferedReader br=new BufferedReader(ipsr); ...
0
votes
3answers
56 views

Write real time data to file

How to write real time data to file in Java? I'm trying to get real time twitter feed to text file. Here is a code that I have written: public void onStatus(Status status) { User user = ...
1
vote
1answer
58 views

Reading txt file from jar fails but reading image works

I have an issue which has been bothering me for days... I checked similar questions but couldn't find a solution. I use NetBeans IDE. I build the project jar file i.e "Clock.jar" which contains a ...
0
votes
2answers
45 views

Get file to be read from another package

I need to catch a file that is package called files I try use getResourceAsStream or File file = getClass().getResourceAsStream("files/big.txt")); However, is not working. This saying to convert ...
0
votes
2answers
52 views

Packing jar file into exists jar file

I'm writing a MP3 player in Java. If i will finish I want to pack all .class files in one .jar file. I don't want have player, which starts by console. If i open this one .jar file i want see player ...
-2
votes
1answer
45 views

Getting integers from text file and work on array list in java [closed]

I have text file which is contains:" I have 3 apples and 1 banana.All people have 4 cars at least." I want to read this .txt file and get integers from it.I will strore integer variables in ...
-3
votes
1answer
20 views

Difference between SKIP_SIBLINGS and SKIP_SUBTREE [closed]

Is anybody aware of the difference between these two FileVisitResult? Directly from this oracle tutorial: SKIP_SUBTREE – When preVisitDirectory returns this value, the specified directory and ...
1
vote
0answers
33 views

About resolve method of the java.nio.Path

I thoroughly understand the use of resolve(path) and relativize(path). In the following snippet though there is something which is not very clear to me: public FileVisitResult preVisitDirectory(Path ...
1
vote
3answers
27 views

Finding a file in a root directory of jar exported from Eclipse for JUNIT testing

In my Eclipse JUNIT test I have several text input files that are opened by new BufferedReader(new FileReader(inputFileName));. They are placed in the root directory of the project After ...
0
votes
2answers
44 views

How to create a zip file of multiple image files

I am trying to create a zip file of multiple image files. I have succeeded in creating the zip file of all the images but somehow all the images have been hanged to 950 bytes. I don't know whats ...
0
votes
1answer
46 views

different categories of false file path java

i am making a program where I would read the data from excel file and store them in mysql database. In this program user would give the path of the file that would use. The code for doing so is the ...
-1
votes
4answers
63 views

Java I/O issue when dealing with files

I'm currently learning Java I/O , when I compile this code : import java.io.File; public class Main {public static void main(String[] args){ //Creation of the File object ...
0
votes
1answer
45 views

How to check if I can delete a file?

How can I check that I can delete a file in Java? For example, I should be able to delete file C:/file.txt but I never will be able to delete the C:/ or Computer, or My Documents etc. Solution ...
0
votes
3answers
28 views

tempfile gives wrong absolutepath after renameto

I'm changing contents of a file, therefore I read a file line by line, replace what I want and write line by line to a tempfiles. When the whole file is processed, I delete the original file, and ...
-2
votes
2answers
43 views

Use java to grab javascript off a website [closed]

It there a way for my java program to grab the javascript embeded on a website and stick it in a data file? Im new to java, Thanks in advanced
1
vote
2answers
93 views

Linux vs. Windows File.delete()

I'm having a bit of trouble understanding how Windows handles files compared to Linux. I'm trying to remove an entry in a file that I'm using as a "database" (it's just a regular file). Java ...

1 2 3 4 5 71