Tagged Questions
0
votes
0answers
14 views
Token generated from Facebook application has no scope
I am working on a native Android App for Facebook. I so created an account on Facebook developers in order to create a new app.
In the field "User and friend permission", I choose user_likes and ...
1
vote
1answer
51 views
Java Permissions Swing
My issue is simply that the commented line in TestMethods#newGame(), or button[2][2].setBackground(Color.red);, will not work, saying that it cannot be resolved to a variable. Where and how would I ...
-1
votes
2answers
62 views
Why can't Java create a file under my user home?
I'm on Ubuntu and trying to run this code:
public class LogCreator {
private static File logFile = new File(String.format(
"%s/myapp/logs/myapp.log" +
...
0
votes
2answers
75 views
Can't get applet to read text file
I've tried to get my Java Applet to read from my text file, but I do not have sufficient privaleges to read the file when i run the applet in my browser.
I have tried to use policy files but I cannot ...
-1
votes
0answers
29 views
Java Assign Permission according to user group [closed]
In my Java Swing application I want to assign different permission levels to different users.
Ex : Admin - has permission to access all forms and perform all functions such as Add, Delete, Update ...
-1
votes
0answers
14 views
Java ee 6 client independet user permissions
I have a issue to redisgn the user rights serivce in a Java EE environment. The actual situation is that the userrights are bound to swing components. So you can't use it in JSF environment for ...
0
votes
0answers
18 views
Java, Solaris : canExecutable function of File class returns true even if execute perms are not set
Following is the sample program I tried on a Solaris machine -
public class FileHandling {
private static FileWriter fstream;
/**
* @param args the command line arguments
*/
public static void ...
0
votes
0answers
38 views
Existing File became zero size when change it's permission
I have a difficulty to change permission of existing file. What I want to do is, marshall xml and write it to a file. Because the apps is running under 'root' account, then the file is owned by root. ...
1
vote
2answers
75 views
How to manage linux file permissions in Java
Is there any mechanism to get and set the file/directory permissions?
For example, I want to show the permisssions of a file in a shell way:
-rwxr-xr--
Is it possible to do this using Java?
I ...
1
vote
1answer
70 views
Check if directory can be opened and list its files
I'm developing a shell in Java. This shell can execute the command find 'regex'. This command finds all the files which have a name that matches the regex, recursively. The method that finds the files ...
0
votes
1answer
318 views
I want to reboot my Android tablet by a button [duplicate]
after searching for a while to solve the above problem, i found out, that my knowledge is terrible low. ^^
I found many describtions of 'how to reboot your device' but i dont really get them, or it ...
0
votes
0answers
48 views
jenkins running phing task cannot create folder inside /var/virtual running git clone
I am running Jenkins which in turn is running phing tasks.
The phing task is simply
git clone -b develop <ssh-url> <brand-new-folder-path>
I checked that I can run
ssh -t ...
0
votes
1answer
221 views
Google App Engine - Java Servlet - File Access
I'm trying to write a Servlet that will return a file. The end goal is to return files that can't be accessed directly through a URL. I started with using the GuestbookServlet that just prints Hello ...
0
votes
0answers
137 views
Tomcat File Upload with Email attachment fails - Permission Denied
the code that I have used to work before, but started to fail now, my guess would be something was changed on the server, maybe permissions or something else. I need to figure out what it might be in ...
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
1answer
51 views
How to display a file from a remote server or host machine from a Java Applet?
I'm trying to use the following code to display an image in a java applet:
icon = new ImageIcon("<url here>", "Hello");
Unfortunately, it doesn't seem to work. From my understanding, because ...
1
vote
1answer
103 views
Error permission on MAC OSX to JAVE
I want to create a software which convert a Video in Audio.
I use PROCESSING (JAVA) and JAVE for this.
My problem is "it.sauronsoftware.jave.InputFormatException", this code work on Windows but not ...
1
vote
0answers
43 views
Java NIO FIle path Issue 2 [duplicate]
I am trying to view all the File permissions of a file through Java. For that I am using Java 1.7 and using Java.nio.Files
The code is:
File f = new File("C:/Users/drusia/Desktop/TestDir/Dell.txt");
...
0
votes
0answers
28 views
Permissioning and SignOn in Java
i'm writing an application in Java, and i would manage the user's permissions (no auth with domain). In other words, an user can see only what has been granted by the admin (Role Based Access ...
0
votes
1answer
94 views
Checking for permission at runtime is failing even though I have said permission defined in the manifest
I have defined the following permission in my the manifest of RecSched application/project:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
...
0
votes
2answers
95 views
Making a newly made file in java unreadable while its being written too
Hello i am using the File class in java to write a txt file with over 100,000 lines of information. I am on fedora linux. While the file is being written to i don't want it to be allowed to be read ...
2
votes
2answers
175 views
Java not able to delete file on “C:\” drive
I have the following code :
public Tester()
{
try {
File f4 = new File("C:\\Vase.zip");
System.out.println(f4.exists());
f4.delete();
...
0
votes
1answer
88 views
Issue granting library load to Java code
I'm using the Java security Manager with my app. I'm going through granting permissions, and I came across one which I can't seem the grant. It's permission to load a library. It's a java *.jar ...
2
votes
2answers
242 views
How to run setup.exe file using java
I am developing an java application from which I have to run xyz_setup.exe installer. I tried the following code
String command = "C:\\xyz_setup.exe";
Runtime.getRuntime().exec(command);`
But it ...
0
votes
1answer
123 views
Is there a bug in java.net.SocketPermission when dealing with cname reverse lookup
Consider the following snippet:
(in this case OpenJDK 6b24-1.11.5-0ubuntu1~12.10.1, which appears irrelevant since all the JVMs 6&7 both Oracle and OpenJDK have the same behavior)
...
1
vote
1answer
161 views
How to grant print permission to my applet without modifying java.policy file
Hi i want to grant
permission java.lang.RuntimePermission "queuePrintJob";
Permission to my java applet which runs on client machine progrmatically in java. Because i can't change the ...
0
votes
0answers
116 views
VOIP applet permissions
An international VOIP provider I use, supports webcall using Java applet. However, their Java applet is not signed and I get a Java security warning for https://providerwebsite.com asking for ...
1
vote
0answers
76 views
Hit “RuntimePermission createClassLoader” while running java version of nachos
I tried to run the java version of Nachos on Windows 7 and Redhat Linux, but both failed due to RuntimePermission problem as below.
user\nachos\proj1> java nachos.machine.Machine nachos.conf
...
0
votes
1answer
147 views
NFC Permission Error
I am working on an application that uses NFC and I keep getting this error,
`12-28 14:19:41.962: E/AndroidRuntime(27523): java.lang.RuntimeException: Unable to resume activity ...
2
votes
3answers
242 views
Setting file permissions returns FALSE always
The code:
File dir = new File(path);
boolean rc1 = dir.setExecutable(true, false);
boolean rc2 = dir.setReadable(true, false);
boolean rc3 = dir.setWritable(true, false);
if (!rc1 || !rc2 || !rc3){
...
2
votes
3answers
218 views
Execute Java on Ubuntu: PHP exec() is not working while console works just fine
My website needs PHP to run a Java program in the background. So, PHP issues exec() method to let Java do all the work. The implementation works fine on Windows, but completely failed on Ubuntu. While ...
4
votes
2answers
166 views
AccessController not taking a class' ProtectionDomain into account [resolved]
Answer
I figured out the answer to the question, and answered it below.
I'll leave the question unchanged for completeness.
Context
I am writing a Java system where code is executed in very strict ...
1
vote
2answers
198 views
Android: Error when saving file to SD Card
I've been trying to save a JPG image to the SD Card in order to then scale it down and display it in an ImageView (due to the original size causing an Out of memory error).
Here's the method I use to ...
-1
votes
4answers
119 views
How to make file unable to delete in java?or give it access permission also admin cant delete it ?(windows 7) [closed]
I securty app need to make file undeleteable by any way or any other Solution do same thing
plz dont tell me make it read only (its securty)
is there thing in nio pakege help me!!
2
votes
0answers
209 views
jnlp.BasicService.showDocument url permission denied with all-permissions and signed jar
I have an applet running in jnlp. My single jar file is signed. I accept the permissions prompt each time the JNLP client is launched. I can obtain the BasicService but it still throws a url ...
3
votes
1answer
118 views
Restrict permissions to threads which execute third party software
I'm developing an eclipse based application capable to execute third party component (not eclipse-plugin).
Each component has a custom descriptor, where are listed permissions (with correspondent ...
3
votes
1answer
67 views
How do I get write permissions in the home folder (or the appdata folder, for windows) in Java?
I am trying to save some user settings in the home/appdata folder, but when I use dir.canwrite() it returns false. This is the code I use to determine the home/appdata folder:
public static String ...
0
votes
1answer
70 views
Set read permisstion for directory [duplicate]
Possible Duplicate:
How do i programmatically change file permissions?
I want to set read permission for some directory. Because i want to use list() method from java.io.File, but when i ...
0
votes
1answer
88 views
All applications that uses the Internet permission
I have this code to get all applications that uses the Internet permission, but something is wrong, help me please :)
public String[] getAppsWithNet() {
int flag = 0;
String[] appsNet = new ...
0
votes
0answers
31 views
Site Permission user/group && their email
How to get the user/group list in Site Permissions on Site of SharePoint 2007? and get their email address. I need Java Code for that purpose. c# for reference.
0
votes
2answers
638 views
Change file owner group under Linux with java.nio.Files
I have a Linux server and I'm running an image resize job in Java for multiple websites on my server. The website files are owned by different OS users/groups. Newly created thumbnails/previews are ...
1
vote
0answers
73 views
How to perform previous process on a RESTful WebService call?
im developing a WebApplication based on RESTful WebServices. I used the NetBeans "New File Manager" to automatically generate my "Entity Classes from database" and the "RESTful Web Services fom Entity ...
0
votes
2answers
148 views
Java Applet on Linux unable to gain Permissions
I'm taking an online class and I'm occasionally getting hung-up because the class is semi windows-centric. Currently I've got a java applet in which I'm trying to play an audio clip with. I'm using ...
1
vote
2answers
843 views
Android: IOException: Permission denied
I'm creating/saving file on SD card. This is the code:
File sdDir = Environment.getExternalStorageDirectory();
public void btnsave_clicked(View v) throws FileNotFoundException, IOException{
File ...
1
vote
1answer
331 views
java.io.IOException: Access denied (H2 + Hibernate)
Table size of more than 10,000 lines
Submit the request to read the last 100 lines of every 6 seconds
and one on the record
But sometimes there is an error
17:34:49,549 WARN ...
0
votes
1answer
63 views
change thread user in java
I run my java program as USER_1 under Windows. I need my program to make a thread with USER_2's permission.
I have no idea how to do it. Searching the web for hours didn't yield me any answers.
How ...
1
vote
2answers
150 views
Why do I get permission denied connecting to port 338?
I was given this sample code from college today and it worked fine inside the college but when I run it (using Eclipse) on my home machine I get permission denied. The machine in college is Windows ...
0
votes
0answers
171 views
Group permissions allows for rw, but bash script gets permission denied [closed]
I wrote a bash script which launches a java application from Hudson. However, the application's log tells me that the bash script doesn't have permission to edit the files it needs to launch the ...
0
votes
1answer
155 views
Can't make file writeable in java under Windows
Please advice. I expect this to allow all system users to be able to change file content or delete it:
File file = new File("sample/sample.txt");
file.setWritable(true, false);
Java itself runs ...
0
votes
0answers
169 views
java.security.AccessControlException: access denied
I have this java applet built in netbeans 7.2
it works localy, but when i upload it to my page it doesn't work
and i get
java.security.AccessControlException: access denied
...
