Tagged Questions
0
votes
1answer
30 views
Java implementation of BST delete node
I'm trying to make a method to delete a node in a BST and its not working..I'm using a Node class I made myself.. tried debugging but didnt get much help on addressing the error in the code.
...
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
4answers
66 views
How to delete a class object? [duplicate]
I have an object called CounterGUI. It creates a GUI. I create it in another class, say MyProgram.
Once MyProgram creates a CounterGUI object, how do I delete the object? Say if I do this:
...
0
votes
4answers
60 views
Monster object deletion
Short introduction:
I'm building a game, where monsters spawn at the top, and moves through a path, to the reach a point where they need to be removed/destroyed/deleted. But I can't seem to get the ...
0
votes
2answers
25 views
Need to delete from multiple JLists instead of just the one
I have 3 jlists. I have a button that is used to delete a selected item from the Patient Jlist but i also need it to delete from my history Jlist and Invoices Jlist. I have it deleting from one but I ...
0
votes
3answers
35 views
nullpointerexception error removal of node
I'm stuck at this one road and it's really beginning to frustrate me. I think I have everything working properly but this one method.
When I remove a Node from my LL I get a null pointer exception on ...
0
votes
0answers
109 views
Hibernate and Foreign Key Constraints
I have several Hibernate mapping files with many-to-many and many-to-one sets referring to other objects. I am trying to implement a back office scheme that can delete objects but I constantly run ...
0
votes
1answer
99 views
Is it possible to delete multiple files at a time from hdfs using hadoop filesystem API?
hadoop shell has the command hadoop fs -rm /dir/*. But i dont find a similar one from API.
0
votes
0answers
25 views
setReadOnly() vs canWrite()
I'm trying to delete a file but no matter what I try it doesn't seem to work. I set the file to read only using setReadOnly() and then immediately check to see if I can write to it and I can. I'm ...
0
votes
1answer
120 views
Delete all photos on Android
I'm relatively new to Android and can't get this working.
So far I have an app which has one large circular red button. When this is pressed by the user it executes an operation (at the moment it ...
1
vote
1answer
39 views
Font File Won't Delete
I'm trying to install PhpStorm and after a long story it looks like I have some bad fonts getting in the way of Java.
I'm completely new to Java but I found this code to loop through my fonts and ...
2
votes
2answers
89 views
delete content in XML file in the code
I'm developping an android application, and i would like to delete a small content in my XML file in my application's code.
i would like to delete the content below
<pma:structure_schemas>
...
0
votes
1answer
69 views
remove comments in XML android
i'm working in eclipse, & i would like to remove all the commentaries in my XML file in my code.
When there is no comment in my XML file, my application works. But as soon as i have any ...
0
votes
1answer
58 views
Java: Delete first node in a LinkedListNode
I thought I had this program working but unfortunately I've overlooked something. How do you delete the first Node and convert the second node into the front of the Linked List. I've tries a multitude ...
0
votes
5answers
126 views
Delete Last Node of a Linked List
I am practicing working with Linked List Nodes and have come upon a problem I don't know how to answer. How do you go about deleting the last node in a linked list. The code below works for all ...
0
votes
3answers
53 views
Why doesn't this make sense? Removing Nodes
I have code that takes user input and increments a counter for printing and deleting purposes. I added some print lines to see what the count difference was between the linked list and the current ...
0
votes
1answer
190 views
Editting/deleting multiple tables in 1 java jsp page
Currently I got the following code:
<%@page language="java"%>
<%@page import="java.sql.*"%>
<form method="post" action="update.jsp">
<table border="1">
...
0
votes
2answers
65 views
How to delete file in SD card? [duplicate]
I use this code:
String path = "mnt/sdcard/ten-file.mp3";
File file = new File(path);
boolean result = file.delete();
But it doesn't delete the file. Any advice?
Sorry, I don't speak english very ...
1
vote
4answers
67 views
Java delete files of certain size
I have a Java tool that generates 100,000+ files that I subsequently use in "Step 2" of my process. Due to the nature of "Step 2", I don't want any files > 1MB. Here was the code I was using to ...
0
votes
2answers
44 views
Delete a file without delete permission
Is there any way in java one can delete a file with no delete permissions on file?
0
votes
1answer
102 views
Deleting File from SharePoint List in Java
I'm trying to delete a file from a Sharepoint list in Java and running into some issues. I'm using a batch element described here
I'm able to make the request, but the results that come back are null ...
0
votes
1answer
79 views
Deleting csv file java
I have a CSV File that I just read the values from, and have another where I put those values and also update. I will like to delete the first CSV, and rename the updated CSV. This is what I have:
...
0
votes
1answer
60 views
delete method with string arrays
I'm trying to write a method that will delete a CD (CD include artist name, album title, and track titles).. there are 5 CDs and I want to delete on of them... this is what the method should do :
void ...
1
vote
2answers
69 views
Removing a line from a file via button action
YES, I have searched the method to remove a specific line via comparing&matching, but mine is different from the situations I've searched, and the wrong action takes place.
The code here is the ...
1
vote
2answers
275 views
java file.delete() returns false but file.exists() returns true
When I am trying to delete a file which is present in tomcat server conf/Catalina/localhost from java code then file.delete() always returns false. But if i am checking the file by file.exists() ...
0
votes
3answers
42 views
Using a cursor to return rows from SQLite, error when database is empty
When my database is empty, or it has just been created I am getting this error,
03-10 17:34:40.758: E/AndroidRuntime(1144):
java.lang.RuntimeException: Unable to start activity
...
0
votes
1answer
61 views
When deleting data from SQLite database, app requires restart before deletion actually occurs
currently I am trying to create a phonebook app that, when the delete button is clicked will delete the entry in the SQLite database that is shown on screen. However, when I click the delete button ...
0
votes
1answer
70 views
Error: Column does not exist
I have been able to link PostgreSQL to java. I have been able to display all the records in the table, however I unable to perform delete operation.
Here is my code:
con = ...
0
votes
2answers
112 views
Update and delete in oracle using java
I have a table named bcfsite with a field named activestate.
update bcfsite set activestate = 1 where bscname like '%B361Z%'
When I run the above query SQLPlus or Oracle SQL Developer, it works ...
0
votes
0answers
81 views
java binary search tree delete two children
i wrote the code for the two cases where you have to find the sucessor then move it up. it seems to work but when i print out the tree it makes two of children. for example my tree is
/
...
1
vote
2answers
287 views
Java Binary Search Tree Delete node with no children
Im working on the case where the node to be deleted is a node. Im not sure if i need to keep track of the parent so that when i find the node to delete i can set its parents pointer to null. but then ...
0
votes
0answers
227 views
Java binary search tree delete
Im writing a delete method for a binary search tree, it isnt complete but i filled a tree so that i could at least test the case where the node iw ant to delete is a leaf but it doesnt seem to be ...
1
vote
2answers
35 views
Web App lib jar deletion issue with STS
I am using STS 3.1 and I am not able to delete the jar that is not used from either STS nor file system, unless i close the STS and delete from the file system.
The problem occurs once I start the ...
0
votes
2answers
86 views
How do I set delete permission?
Ok so I'm writing a program, a part of which is to delete files in a certain folder (in root of program). Currently, the files are NOT created by the program, but externally - but in the future they ...
0
votes
3answers
69 views
Binary editing in java
I have a file that I am trying to binary edit to cut off a header.
I have identified the start address of the actual data I want to keep in the file, however I am trying to find a way in Java where I ...
0
votes
1answer
24 views
delete all symbols in the wordthat is equals last symbol in the word
How to delete all symbols in the wordthat is equals last symbol in the word?
As example: word is "alphabeta" and return word must be "lphbet".
private static StringBuilder ...
1
vote
3answers
360 views
Delete files older than x days
How can i find out when a file was created using java, as i wish to delete files older than a certain time period, currently i am deleting all files in a directory, but this is not ideal
public void ...
1
vote
3answers
81 views
Recursive deletion causing a stack overflow error
Hi all i asked a question about how to delete all files from folders in a directory but keep the folders, this can be found here :
How to delete files of a directory but not the folders - JAVA
one ...
0
votes
5answers
154 views
How to delete files of a directory but not the folders - JAVA
hi all i have create some code that deletes all the files in a folder, the issue is while this is great, i want to be able to delete all the files in a directory but leave the folders intact, so i do ...
1
vote
1answer
88 views
Java delete, not deleting
hi all i am trying to create some code that deletes all the files in a directory, so far i have :
@ViewScoped
@ManagedBean
public class Delete {
public void DeleteFiles() throws IOException {
...
0
votes
1answer
129 views
Android SQLite deleting a specific row from database
i am trying to do a simple login page where i am able to delete a specific contact with its details just by entering the username.
in other words, i would like to delete a specific row in my ...
0
votes
3answers
71 views
Delete all files in a directory but not the directory every 24 hours
Hi all i am looking to do some java, that will delete all the contents of a directory every 24 hours, what is the best aproach to doing this, i have found a lot of ways using php but not java
Thanks
3
votes
4answers
76 views
Delete complex objects at runtime in Java
In Java, at some point in code I want to free memory taken by a huge HashMap<Integer, ArrayList<Integer>> object. Is it enough to point it to null like below:
Map<Integer, ...
0
votes
0answers
50 views
Cannot delete file
When I try to delete any *.java file, then I get an error:
Cannot delete file Aa.java in C:/Users/ShookTea/Documents/NetBeansProjects/Project/src.
NetBeans have admin's permission. Im running ...
0
votes
2answers
173 views
JPA EntityManager not removing entities
I want to delete a list of entities from database.
List<LetterEntity> letterToDel - the list of entities. I tried to remove this list in many ways.
I create one transaction and delete each ...
0
votes
4answers
41 views
deleteRange function only deleting first and last
currently working on a java program that does a bunch of functions, and one of those functions is to delete a range of alphabetized words. I am using animals as an example.
Here is the display list ...
0
votes
2answers
131 views
Delete files using java
In my java application, i'm using FilenameFilter to get zip files in given directory. My directory structure is looks like below.
D\:\MyFiles\data\dir1
D\:\MyFiles\data\dir2
D\:\MyFiles\data\dir3
...
0
votes
2answers
85 views
How to give a POST API request in a browser?
I'm really new to APIs and POST or PUT or DELETE. I'm also new to running APIs using POST or other.
I have given a document which says
Function :- Add new Item
URI :- qtp/qtps
ACTION :- POST
...
0
votes
2answers
201 views
Deleting an existing file using f.delete() method
String book_name = book_list.getModel().getElementAt(book_list.getSelectedIndex()).toString();
System.out.println("File name : "+book_name);
File f = new ...
2
votes
3answers
70 views
How to prevent user from deleting a file if I that is being used by JVM
I have a piece of JAVA code which reads a few files and keeps them loaded into memory for sometime. The file handles are preserved after reading. My problem here is that I want to restrict user from ...



