Sponsored Content
Top Forums Programming JAVA code to create file in Linux with specific permission Post 303030675 by AbuAliiiiiiiiii on Wednesday 13th of February 2019 05:19:05 PM
Old 02-13-2019
\opt\sys\doc this is the path and files will be created under that path

Im new in Java and i want your help to have the code if you can help me
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to create file in ksh scripting with permission(rw-rw-rw)

Hi, Please provide your inputs.. Thanks in Advance, Mansa (1 Reply)
Discussion started by: mansa
1 Replies

2. UNIX for Dummies Questions & Answers

granting permission to file/directory to a specific user

hello, I would like to grant full access to a directory which is owned by root and the web application that created it. I have though of adding the permission to the whole world, but for security reason I would like to grant it to one more user. I have tried this 'chmod -U newUser+wrx... (2 Replies)
Discussion started by: run123
2 Replies

3. Shell Programming and Scripting

How to create a file with full permission in unix script

In my script, I am creating a file ----> then writting one line (i.e. Timestamp) ----> then FTP'ing. The same script can be executed by many other users. While other users executing this script, they couldn't Over write this one line (i.e. Timestamp) My expectation So I wanted to create a... (2 Replies)
Discussion started by: sbmk_design
2 Replies

4. UNIX for Dummies Questions & Answers

Create File with specific Length

We have utility running on Unix which generates Files with records greater than 32760 , (max supported by Mainframe) .Our requirement is to transfer is file to Mainframe .When we ftp the in binary format it automatically wraps it up..so we are good there... But now we need to zip and send the file... (2 Replies)
Discussion started by: nishantrk
2 Replies

5. UNIX for Dummies Questions & Answers

How to create a file with 777 permission.?

Hi Guys, I want to know is there any method to create a file having 777 permission. I am aware of umask, since it is only giving max. 666 permission for files this is not fulfilling my needs. Thanks in advance ---------- Post updated at 12:49 AM ---------- Previous update was at 12:31... (10 Replies)
Discussion started by: sanoop
10 Replies

6. Programming

command linux in java code

Hello Please why the files have not created? Thank you (0 Replies)
Discussion started by: chercheur857
0 Replies

7. Linux

Linux through Java code

Hi How can I write a Java program to execute Linux commands? What is the best approach: Invoking the Linux shell within Java and executing commands or, using the Java APIs to do the stuff. Since it is platform independent, it'll know itself what to do. We need not check which OS the Java... (1 Reply)
Discussion started by: Dorothy
1 Replies

8. Shell Programming and Scripting

Create a new file from another file with lines begins with a specific string

Hi, I have a file with below format myfile.txt aa aa1 aa2 qq aa4 ghs aa6 bbc gdf I m looking to create a file where lines begins with aa. myfile1.txt aa aa1 aa2 (4 Replies)
Discussion started by: Litu1988
4 Replies

9. Shell Programming and Scripting

Need a script to create file permission change restriction

Hello, I am looking for a UNIX shell script which can help me for access restriction. 1) /home/ram, there are number file with .txt extension, which should be only owned "ram" user. like as below ls -lrt *.txt -rwx------ 1 ram dba 11 Jan 4 2015 PASS1.txt -rwx------ 1 ram dba 10 Jan 4... (8 Replies)
Discussion started by: mr.trilok
8 Replies
JYTHON.CONF(5)							File Formats Manual						    JYTHON.CONF(5)

NAME
jython.conf - Jython registry for system-wide options DESCRIPTION
When running jython(1) or jythonc(1), a number of properties may be set to customise Jython's behaviour. Properties can be assigned values in any of the following four ways. This list is arranged from lowest to highest priority; thus for instance a property set in a user's personal registry will override the same property set in the system-wide registry. Java system properties Jython options may be set in the standard Java system properties. However, since the jython and jythonc startup scripts take responsibility for starting the Java interpreter, it is unlikely that you will use this method of Jython configuration. Jython system-wide registry The system-wide registry is the file /etc/jython/jython.conf. It contains a number of lines of the form property=value. Lines that are empty or that begin with a hash (#) are ignored. User's personal registry The user's personal registry is the file ~/.jython. Its format is the same as for the system-wide registry. Command-line options Properties may be specified when running jython or jythonc at the command-line. They are set using command-line options of the form -Dproperty=value. PROPERTIES
The following properties may be set in the Jython registry. Other less used properties are also available; see the comments in the default system-wide registry for further details. If a property is marked (auto), the jython and jythonc startup scripts will attempt to set this property automatically, although it can still be overridden in the system or user registry or on the command-line. python.cachedir (auto) The directory to use for caches (currently just package information). This directory must be writable by the user. If the direc- tory is an absolute path then it is used as given; otherwise it is interpreted as relative to the root Jython directory (/usr/share/jython/). python.console The name of the console class to use when running Jython from the command prompt. An alternative console class that emulates GNU readline can be specified using this property. python.jythonc.classpath (auto) Extensions to the Java property java.class.path for use with jythonc. This is used to put extra classes on your Java compiler's classpath (and the core Java classes as well if your Java compiler requires them). python.jythonc.compiler (auto) The Java compiler to use with jythonc when turning generated Java code into Java class files. This should be the absolute path to a Java compiler, or the name of a compiler on your standard PATH. python.jythonc.compileropts Options to pass to the Java compiler when using jythonc. python.path (auto) The path on which Jython will look for additional python modules when importing. This variable has a similar function to CPython's PYTHONPATH environment variable. python.security.respectJavaAccessibility Normally, Jython can only provide access to public members of classes. However if this property is set to false and you are using Java 1.2 then Jython can access non-public fields, methods and constructors. python.verbose Sets the verbosity level for informative messages. All messages with at least the specified severity will be displayed. Valid val- ues in order of increasing verbosity are error, warning, message, comment and debug. SEE ALSO
jython(1), jythonc(1). If the Debian package jython-doc is installed, full documentation from the Jython authors will be available in /usr/share/doc/jython- doc/html/. AUTHOR
This manual page was prepared by Ben Burton <bab@debian.org> for the Debian GNU/Linux system (but may be used by others). It is based upon the official Jython documentation. September 2, 2001 JYTHON.CONF(5)
All times are GMT -4. The time now is 09:43 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy