Tagged Questions
-5
votes
1answer
33 views
In Java, how can I open all applications in the application folder? [closed]
I don't have any code yet, I just need some tips on how to make the program go to a directory (applications), select all, and open them (or open them one by one with a for loop). How do I do this!?! ...
0
votes
0answers
24 views
create different folders for different type of users and to create a filter for that
I want to create a neat project that can help me in future to update. I am about to complete my project and now I want to place different files in different folders based on their privileges like a ...
-1
votes
1answer
44 views
Creating Folders in a Zip Folder in Java [duplicate]
My task requires me to save a file directory into a zip folder. My only problem is I need to keep the sub-folders as folders from the main Directory. The file system will look something like
...
0
votes
1answer
25 views
Save user-uploaded files from Maven Clean
This WebApp is developed using Maven with Java on a Tomcat server.
Once a user uploads an image it is saved under Project/target/ProjectWithVersion/images
(this path is built by using ...
0
votes
0answers
25 views
Following guide to make game for android in eclipse, but adding data folder is not working like it should
I'm following this guide here and when it says:
" 4. Finally, we must create a data folder by right clicking on src and creating a folder named data.
Inside it, download, drag, and drop this image: "
...
0
votes
1answer
38 views
Android get every file in a folder
Let's say I have the folder "/sdcard/my_pictures" and it has a bunch of images in it, img1.png, img2.png, ..., img3.png.
What is the correct syntax to iterate through these? I want something of the ...
2
votes
2answers
91 views
Relative path of my Java server
I'm trying to create a file in my server. I have sent a image, and I want to create that Image in a folder of my server, but with relative path.
String filePath = ...
4
votes
6answers
93 views
how to zip a folder itself using java
Suppose I have the following directory structure.
D:\reports\january\
Inside january there are suppose two excel files say A.xls and B.xls. There are many places where it has been written about ...
3
votes
1answer
54 views
Create a File in a Protected Folder
I am attempting to create a folder (and a file inside of it) in a folder that is most likely protected.
Here's my code:
package me.pogostick29.audiorpg.data;
import java.io.File;
import ...
0
votes
3answers
46 views
How to get and use the path of a folder in eclipse project?
I create a new folder Fold inside my eclipse project Proj. How do I get the path of Fold relative to Proj ? This folder will be used as place to store serialized objects. Will I be able to serialize ...
-2
votes
2answers
47 views
How to go through folders and then write every file within those folders? [closed]
How to go through folders and then write every file within those folders? If there is a folder within a folder we need to go through that first and then get back to the older directory.
0
votes
0answers
48 views
Guidance on NetBeans folder structure / file placements [closed]
Hi seasoned NetBeans experts, please can you provide some guidance on where to place files related to my Java application?
I have written a simple business support system in Java, broken down into ...
-2
votes
1answer
44 views
Git create a subfolder
I've just started to use Bitbucket, but I've the same problem on Github. I'm using Eclipse with EGit.
My problem is when I commit and push: I don't see directly "src" but there's a folder and it's ...
0
votes
1answer
99 views
create file, exception cases in java
In Java (newer version) and windows xp (ntfs):
1 - Existing file f, Files.createFile(Paths.get(f)) :
FileAlreadyExistsException
2 - Existing file f, Files.createDirectory(Paths.get(f)) :
...
-1
votes
1answer
56 views
What makes a file into a folder? [closed]
What is the (file system specific) difference between a file and a folder?
Why are different methods in java.nio.file.Files required to create the one or the other? createDirectory(..) and ...
0
votes
5answers
89 views
How to create a folder “beam” on SDcard (“/ sdcard / beam”)
I need to create a folder "BEAM" on the SD card, but it says to me that the folder cannot be created.
I used this code:
File mediaDir = new File("/sdcard/beam");
/ / Create a folder if ...
1
vote
2answers
64 views
JAVA - Get access to a file in different subfolder
I am programming a file transfer, and i am having troubles with it.
In my current location i have created a folder called "Server Folder", where i will have files that the Client can transfer (I will ...
0
votes
4answers
192 views
Java - Check file name against current date?
I'm still very new to Java, and am making a small program that has to check a folder filled with thousands of files named after the date they were created in a YYYYMMDD format (e.g. 20130228) and if ...
0
votes
2answers
73 views
Can I create a byte[] straight from a folder?
A web Service expects a byte[] coming from a zip file.
I have some files in a folder that I zip with Java and then I get the byte[] from this zip file.
Is this necessary or can I create the byte[] ...
0
votes
1answer
74 views
Java read image from 2 directories up
How can I place an image on screen that is 2 directories up? Here's my code:
package mousemaze;
// Imports
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
...
0
votes
1answer
129 views
CQ5/JSP how to load content of folder
how can I load content of a folder in Adobe CQ5/JSP? I've tried this code
File folder = new File(pathToFolder);
File[] listOfFiles = folder.listFiles();
if(listOfFiles == null){ //this statement ...
0
votes
1answer
46 views
AddFolderListener works in some devices but in another doesn´t work
I´m developing an app where it listens the messages from an email account and it does an specific action. For that, I use this:
public class EmailListener implements FolderListener {
public void ...
1
vote
2answers
184 views
How to open and view the folder from my computer?
Edited Question:
try{
folder=jTextField1.getText()+"_portfolio";
String path="E:/test folder/"+folder+"";
Desktop.getDesktop().open(path);
}catch(Exception E){
}
I got ...
0
votes
1answer
286 views
How to delete hidden files in windows 7
I have created Hidden folder in windows from this link..Now i have to delete one file in that hidden folder.
eg.C:\program files\test\abc.xml
I want to delete abc.xml and i have used following code ...
1
vote
2answers
190 views
file.getParentFile().mkdirs(); creates duplicate folders in osx
im currently developing a program designed to work on windows and osx, i have this function to copy a file which works perfectly in windows, but when i try it in osx, i get an IOException: "no such ...
1
vote
1answer
56 views
Is there one to one relationship between java package and directory?
Learning java newly. Can anybody clear my doubt in following?
My demo application has code like this
SourcePackages ---> ex1.pkg1
|
--->food
My ex1.pkg1 ...
2
votes
3answers
63 views
Reasons behind distributing files into many folders instead of a single folder [closed]
I'm reviewing the code of a legacy application written in Java, a content delivery server. They have a file repository where the files contained are all named after an MD5 Hash Hex of their content.
...
0
votes
2answers
127 views
Java http server and web folder
does anyone know how to create HTTP server in Java, but set default folder for web and than load files from it? I want to use com.sun.net.httpserver class.
For example, I have folder named abc next ...
0
votes
0answers
33 views
How to create a jar with an external folder
I have a java project with the src folder and another external folder in Eclipse. This works in Eclipse but how can i correctly export these two folders to run the programm without Eclipse?
2
votes
3answers
103 views
Copying children files of a source to a destination in Java
I'm trying to make a program that copies a directory's children, and I can't label all the specific names because they vary throughout each folder. Here's the code I have, but if the source is ...
2
votes
1answer
107 views
The last character in a folder name can't be replaced
I use .replace() instructions in order to clean up folder names. This worked fine for these characters so far: {".", " ", "(", "["} but as soon as I got to the closing brackets, I receive an error. ...
0
votes
0answers
50 views
getResourceAsStream(): how is decided where to search first?
Imagine the following folder structure
folder
App.jar
img (actually I didn't know it was there)
Inside the App.jar there is also img folder.
So I have used the following code to read an image ...
1
vote
1answer
181 views
Dropbox and its “Folder” like design
I was wondering from a programmers perspective preferably in C# or Java, how hard is it to manipulate a folder within the operating system to do what you want, for instance to act like an FTP?
...
0
votes
2answers
531 views
list folders and sub folders in java
I have been trying to display a folder list in Java using this code :
class Folder {
boolean isFile;
String folderName;
List<Folder> subFolders = new ArrayList<Folder>;
}
class ...
0
votes
2answers
1k views
How to find sub-directories in a directory/folder?
I'm looking for a way to get all the names of directories in a given directory, but not files.
For example, let's say I have a folder called Parent, and inside that I have 3 folders: Child1 Child2 ...
0
votes
1answer
71 views
java isDirectory showing wrong result
I have the following code that checks if a file is a directory, and if not, creates it.
File folder = new File(destFolder);
if (!folder.isDirectory()) {
if ...
0
votes
1answer
65 views
PHP or Java Confirm if user has access to a specific folder on a network drive
When the user goes to a specific page on an internal network website I need to check if they user has access to a very specific network folder. I need something that operates like is_readable() but ...
1
vote
3answers
301 views
how to zip a folder at FTP location using FTPClient in java
I wanted to zip a folder which has some files in it and which is present at ftp location. How I can zip folder at FTP location.
FTPClient ftp = new FTPClient();
ftp.connect(hostname);
...
1
vote
0answers
61 views
google docs api folder
I'm trying to develop one java function to retrieve the id of one specific folder over Google Docs, but the documentation over this language is poor and have problems to develop it. Until now I've ...
0
votes
0answers
242 views
How to create a folder in SharePoint 2010 document library using REST or HTTP methods
I am using Java to make calls to the SharePoint REST Interface to get list items of a document library and HTTP methods to upload documents to SharePoint. But, I am having a difficult time trying to ...
1
vote
2answers
335 views
How to read a folder, count the files and copy to new folder
A follow up to my previous question - JAVA: How to read directory folder, count and display no of files and copy to another folder?, I want to read a folder, count the files in the folder (any file ...
-1
votes
2answers
274 views
Java: How to read directory folder, count and display no of files and copy to another folder?
I have to read a folder, count the number of files in the folder (can be of any type), display the number of files and then copy all the files to another folder (specified).
How would I proceed?
0
votes
1answer
351 views
Unzip multiple gzip files across different folders recursively in Java
I have the following file structure:
D:\Files\File1\file.gz, file2.gz, file3.gz
D:\Files\File2\file.gz, file2.gz, file3.gz
etc..
I would like to provide the Java program with just D:\Files and ...
1
vote
2answers
72 views
Eclipse | Packge turns into a directory, breaks my whole project
So the issue i am having is extremely weird. When i have a preexisting project set up (and am moving it from computer A to computer B). I make a new project and import it the normal way. It is very, ...
0
votes
1answer
182 views
What is the difference between a source folder and a (normal) folder
I'm following this guide: Spring MVC and I realized that I do not know the difference between a source folder (src) and a plain folder.
I'm using eclipse, so maybe the difference is only useful in ...
-1
votes
4answers
2k views
Recursive method to search through folder tree and find specific file types
So I am writing a code that locates certain information on Protein databases. I know that a recursive folder search is the best possible way to locate these files, but I am very new to this language ...
1
vote
3answers
419 views
Difference between Package and Directory in Java
In a Java Project, does keeping all the .java files in the same folder mean they are in the same package?
What is the difference in making a Package for our project compared to keeping all the ...
0
votes
1answer
430 views
How to zip/upzip a folder and all of its files and subdirectories using Java?
I was reading this to learn how to zip/unzip files using Java. I used this to guide me and it worked great when zipping all the files inside a folder, but when I tested it with a folder containing ...
2
votes
3answers
100 views
Start program in user folder without knowing user name
I have no idea if I can just run this code and it will work but here:
public void actionPerformed(ActionEvent e) {
try
{
Runtime rt = Runtime.getRuntime();
Process p = ...
1
vote
1answer
184 views
How to fix bug of JFileChooser or avoid the bug preventing JFC to show shortcut (lnk) folders
Using NetBeans(java) I created a JDialog with a JFileChooser and when I try to open a lnk folder using the ComboBox (in other ways works fine) an exception is thrown and the folder is not opened.
I ...





