File handlers are mechanisms which provide abstraction over primitive file operations.
1
vote
1answer
22 views
create a directory with filehandler
I used java.util.logging to create two logfiles.
Here's how it looks like.
Handler fh = new FileHandler("%h/AntonGUI_Tester/Logfiles/"+logTime+".html");
fh.setFormatter(new HTMLTableFormatter()); ...
1
vote
0answers
45 views
Groovy Log Ant Output w/ Java.util.logging
I'm trying to include Ant output in my regular log file. I have:
def log = Logger.getLogger("ScriptName")
def fileHandler = new FileHandler(logFileName)
fileHandler.setFormatter(new ...
1
vote
1answer
83 views
perl skip line N while reading a file
How would I skip say line 9 while I'm parsing a text file?
Here's what I got
use strict; use warnings;
open(my $fh, '<', 'file.txt') or die $!;
my $skip = 1;
while (<$fh>){
$_=~ s/\r//;
...
0
votes
1answer
66 views
How to test if STDIN has something to read (Perl on Windows)
I have encountered a problem in Perl. To test if the STDIN file handler has something to read immediately, I would like to program like this.
while(1)
{
my ($l);
if (TestCanRead(STDIN))
...
3
votes
2answers
285 views
Dynamic generated image is requested twice when using jquery lazy loading in Google Chrome
I have an ashx file handler that generates my images.
<img src="www.mywebsite.com/action/getimage.ashx?imageID=f8be4bf6&width=100&height=700&bgcolor=999" />
This all works fine.
...
8
votes
1answer
167 views
What happens if you don't close a filehandle in Perl?
If I am writing a Perl script that overwrites STDERR with a duplicate of STDOUT but I never restore the filehandle, what happens at the end of script execution? I can't find anything that warns ...
0
votes
0answers
68 views
How to configure logging handler to produce monthly rotated log files?
I am about to configure a python logging system using the dictconfig format in settings.py as suggested by Django.
For effectiveness, I would like to log entries in monthly splitted log files ...
0
votes
2answers
123 views
Java FileHandler to use 24 hour time
I have a FileHandler set up:
Logger logger = Logger.getLogger(this.class.getName());
FileHandler handler = new FileHandler(myFile, true);
handler.setFormatter(new SimpleFormatter());
...
2
votes
3answers
262 views
Perl - Parse blocks from text file
First, I apologize if you feel this is a duplicate. I looked around and found some very similar questions, but I either got lost or it wasn't quite what I think I need and therefore couldn't come up ...
0
votes
1answer
264 views
How to write util.logger in thread safe execution?
I have MyLogger class which contains:
public class MyLogger {
private final static Logger logger = Logger.getLogger(MyLogger.class.getName());
private static FileHandler fileHandler;
...
0
votes
0answers
18 views
how print different/same data to several filehadlers
how print different/same data to several filehadlers
Some data goes to STDOUT
Some to STDERR
Some to LOGFILE
But there is some common data which goes to both STDOUT and LOGFILE or STDERR and LOGFILE
...
0
votes
0answers
105 views
Encode a fileHandler to output unicode characters
I'm using Java FileHandler in my application to write a log file. i need to get output in Unicode characters. so i have set encoding as fileHandler.setEncoding("UTF-8"); in my application. but Unicode ...
1
vote
4answers
297 views
how to ignore exit status from shell command in perl script
I have a following code, where i use a command which is used as input for file open.
when my command $cmd gives non-zero exit status my script exits. i want it to still continue and do rest of the ...
1
vote
2answers
265 views
Perl, How can I use piping to cat multiple files into the same filehandler?
I've been trying to assign multiple files to a single file-handle. And from there process the entire filehandle to look for a certain pattern and then write that to FIN_RESULTS.
Linux
exp files
...
1
vote
1answer
225 views
java.util.logging.FileHandler and multithreading
The FileHandler class from java.util.logging implements some sort of locking mechanism for the file it is writing to. However i found that there a .lck files lying around in the filesystem after an ...
2
votes
2answers
478 views
Assign hidden field value in ashx page?
I need to assign filename name variable to hidden field value in ashx page, how can I assign value to hidden field in ashx page?
.ashx page
public void ProcessRequest(HttpContext context)
{
var ...
0
votes
2answers
209 views
How to read excel File from ASHX page?
Hi i have uploaded file to one amazon s3 server,how can i read excel file and want to send excel data to database.
my code is
<script type="text/javascript">
var obj = null;
...
0
votes
0answers
196 views
i am uploading file using jquery plugin but jquery is not striking handler function
Hi i am uploading file using jquery uploader,in javascript filehandler file is not striking please help me to solve my problem
<script type="text/javascript" language="javascript" ...
-3
votes
1answer
242 views
Filehandler create file in directory
How to create log file in an existing directory ?..I have tried out this code:
String fileName = "/log/ABC.log";
FileHandler fileHandler = new FileHandler(fileName, true);
But it is not ...
1
vote
1answer
217 views
How to close FileHandlers in thread?
I want to close all FileHandlers once the thread finished or was forcely finished.
I created a closeLogger function but it seems it's not being called
because I see that the file is still locked in ...
0
votes
1answer
209 views
Perl print output file names with number variable
I am trying to pull 1 week data from sql server, then trying to write the data into files with separate names.
Following codes does not work, and I cannot find a way to create file handlers with a ...
0
votes
1answer
620 views
logger and FileHandler in java
i want to print date and time in file not in the Screen
this is my code:
String fileName = NameEnter.getText();
Logger logger = ...
0
votes
2answers
145 views
Logging into a File from a Netbeans Web Service
I want to do some simple logging, what am I missing here?
I just want to log it as simple as possible (for now). This code seems to work, but not on the web service!
@WebMethod(operationName = ...
0
votes
1answer
664 views
What is the correct way of configuring Python's logging.FileHandler?
I wrote a small-ish Python script that handles nightly conversions and archiving of audio data. Since there have been some unexpected problems along the way (non-existing files, unreliable connection ...
2
votes
2answers
179 views
Perl set file handle based on command line args
I want to read from the default input if data is piped in or a file is provided, but if nothing is given I would like to supply a default for while(<>) to execute on.
Pseudocode:
...
4
votes
2answers
199 views
Clickonce application and file handler behavior
I have a clickonce application, and I have set up several file handlers for this application (for the sake of this example, I want to handle files with either the .aaa or .bbb extensions).
If I ...
1
vote
0answers
166 views
How to let root and named loggers's filehandler log to the same file?
My goal is to use java.util.logging(jdk1.6)
write all logs to the same log file and
do log rotation
can use %u in file pattern to avoid potential file conflict with other program
I had configured ...
0
votes
1answer
1k views
When to close and remove FileHandler with java logging
I am using the java.util.logging API and atatching several FileHandlers to a named logger to write the log messages to specific files. I see that this creates a lck (lock) file for each log file. The ...
4
votes
5answers
380 views
Is Logging using FileHandler a bottleneck?
I am considering logging business events in a J2EE web application by using Java logging and FileHandler.
I am wondering whether that could cause a performance bottleneck, since many log records will ...
5
votes
1answer
1k views
Python proper logging with filehandlers
I am using python logging in my django application. A class that connects to a backend api initialises this logger with a filehandler if needed. The class gets instantiated everytime an api call is ...
5
votes
1answer
2k views
Android: Open saved file in default app from my app
First off, sorry if this has been asked but I cannot find it. I am downloading documents in my app from a remote resource. Once the document is downloaded, I want to open it for the user. What I want ...
1
vote
2answers
480 views
JavaApplicationStub with CFBundleDocumentTypes
I'm trying to use CFBundleDocumentTypes to associate a custom file extension with my application. As far as I can tell, this seems to "work" -- JavaApplicationStub launches my application when I ...
1
vote
3answers
130 views
How can get a filehandle for a Perl program's output?
I have an encrypted file X1, I have a Perl program P1 that decrypts the X1. I am parsing the decrypted file using a Perl program p2.
X1--P1(decrypter) --> X2(plain text file) --p2(parser) --> ...
1
vote
1answer
2k views
adding date to Java util logger fileHandler name
Hi I currently have this in my .properties file:
java.util.logging.FileHandler.pattern = %h/programName%u%g.log
I would also like to append a timestamp / username to this so its easy to identify log ...
0
votes
3answers
875 views
Java FileHandler disable log rotation
I am trying to disable log rotation, for file handler using,
FileHandler fh = new FileHandler
( "path" + "run.log", 1000000, 1, false);
What i want is one log, created for each run i do not want ...
