Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
129 views

Is there a way to make the native `browse` button on a file input larger cross browser?

As you may know, you can make your own file input control using the (hacky) approach of positioning the file input over your custom button and using opacity: 0 on the file input itself. The image ...
4
votes
5answers
506 views

Python read huge file line by line with utf-8 encoding

I want to read some quite huge files(to be precise: the google ngram 1 word dataset) and count how many times a character occurs. Now I wrote this script: import fileinput files = ...
2
votes
1answer
38 views

Having trouble trying to add a line to a text file if that line doesn't exist already using Python fileinput.FileInput(…)

I'm trying to edit text files using the Python FileInput class. First I store the lines that i need to write in a Dictionary. Then I iterate through that dictionary, and if the dictionary[key] ...
2
votes
2answers
95 views

Inserting file input element using jQuery

I'm having trouble inserting file input elements with jQuery. What I want to happen is when a user selects a file using the input element, jQuery should hide that input and insert a new file input in ...
2
votes
3answers
425 views

How to avoid Python fileinput buffering [closed]

Possible Duplicate: Setting smaller buffer size for sys.stdin? I have a Python (2.4/2.7) script using fileinput to read from standard input or from files. It's easy to use, and works well ...
2
votes
1answer
1k views

jQuery: “change” event on file input element does not fire if the file selection is triggered by an element other than the file input

RE: Jquery: change event to input file on IE Any alternative to jQuery change() to detect when user selects new file via dialog box in IE8? The above questions dealt with getting the 'change' ...
2
votes
3answers
3k views

Elegant way to skip first line when using python fileinput module?

Is there an elegant way of skipping first line of file when using python fileinput module? I have data file with nicely formated data but the first line is header. Using fileinput I would have to ...
2
votes
5answers
3k views

Python: Prevent fileinput from adding newline characters

I am using a Python script to find and replace certain strings in text files of a given directory. I am using the fileinput module to ease the find-and-replace operation, i.e., the file is read, text ...
1
vote
1answer
22 views

Using fileinput.input() to read gzip files

I'm using fileinput to read some large data: import gzip import fileinput f=gzip.open('/scratch/try.fastq.gz','r') for line in fileinput.input(f): print line However I got errors like: ...
1
vote
1answer
43 views

Uploading files by submitting form to an iframe; why isn't it working?

I'm trying to implement the well-known method used to upload files to a server in an AJAX like way (I already have a flash-based upload in place, this is a fallback), but it seems as though my ...
1
vote
3answers
515 views

HTML5 drag and drop and multiple file upload

I have an HTML form that contains a file input field with multiple file selection and I also have a drag and drop feature that I am working on as well. My question is how to integrate both of these ...
1
vote
6answers
130 views

File Input in Java

I'm writing up a program that goes into a basic .txt file and prints certain things. It is a comma-deliminated file. The file includes 7 first and last names, and also 4 numbers after. Each of the ...
1
vote
1answer
672 views

Used BufferedReader…Why this code doesn't work at android? It works in Java

I wanted to set a array and input a word from txt file. (stage.txt) It works in Java, but not in android... When I use (System.out.println(stage[0][1]), the console showed String value. But in ...
1
vote
4answers
102 views

How to make “this, string format” into two tokens (“this” and “string format”)

Im reading in a file and each line is as follows Derek Simons, Jason baker Jack Smith, Rob Thomson The problem is with my tokenizer StringTokenizer st = new StringTokenizer(line, ","); ...
1
vote
2answers
3k views

Chrome CSS - Styling File Input

Here is my file input rendered in Chrome: In IE it looks a lot more basic, which is fine (although the vast inconsistencies with this particular control are frustrating!) My default CSS for inputs ...
1
vote
3answers
636 views

Get dimensions for dataset matlab, Size Function

Hello I have been trying to display the dimensions of a dataset, below is the following matlab code that i used...but it gives me the wrong output....i'e number of rows and columns values are ...
1
vote
1answer
320 views

python fileinput changes permission

In my python code, I use the fileinput module for inplace replacing: import fileinput for line in fileinput.FileInput("permission.txt",inplace=1): line = line.strip() if not 'def' in line: ...
0
votes
1answer
36 views

how to reset (clear) file input

how can I reset file input in IE, I used the following and it worked in chrome and FF but not IE fileInputElement.value="" what's the alternative in IE ?
0
votes
1answer
74 views

File Input and Errors on Compile

Hello Users of Stack Overflow! I'm having an issue with a program I'm attempting to write in C++. Every time I compile my code I get the following Errors: FCS2Phase.cpp: In function `int main(int, ...
0
votes
2answers
39 views

taking input from a file_2

i am taking input from a file row-wise...each row contains three or less columns... everything is fine if the line in the file is like lda #5 or label +lda #5 but if a line ...
0
votes
3answers
65 views

Is there a way of nesting two fileinput in python?

For each line in fileX I need to scan all lines of fileY. I tried this: for line in fileinput.input('fileX'): do.fun.stuff(line) for element in fileinput.input('fileY'): ...
0
votes
1answer
66 views

How to assign file input value from another one with Jquery?

I have some elements like these: <input type="file" name="fake"> <input type="file" name="real" style="display:hidden;"> <a href="javascript:void(0)" onclick="addToList()"> ...
0
votes
1answer
155 views

Cloning fieldset with jQuery without keeping value for input type file

How can I remove the value for an input of type file which is child of a fieldset that gets cloned with jQuery. If the cloned object has a value already set for the file input, it will keep it. ...
0
votes
1answer
129 views

IE doesnt allow customized browse buttons for input file?

I'm trying to style my file input, so i ended up having an extra button with some styling, which i will call the "fake browse" button. When a user clicks on the "fake browse", my javascript will ...
0
votes
1answer
118 views

Nested file input doesn't work in Firefox

I have the following HTML: <input id="outer" type="file" onchange="console.log('No.');"> <input id="inner" type="file" onchange="console.log('Yes!');" /> </input> Styled like ...
0
votes
2answers
152 views

code jam practice— reading problem

I refer to code jam because most of you will understand the kind of input file we have. the problem is - qualification 2010 (snapper) The problem I'm facing in my program that it reads the first ...
0
votes
1answer
2k views

<Input type=“file”… MVC 3 Client-side validation for required

Simple question... Is it possible to use client side MVC 3 validation on inputs of type file? To explain... MVC 3 uses its model validation with IClientValidatable and unobtrusive javascript to ...
0
votes
2answers
180 views

File input in Java for Mac

I've got this basic program working but it's spitting out a weird answer. When I run the program it gives me: {\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf350 {\fonttbl\f0\fswiss\fcharset0 ...
0
votes
4answers
201 views

File input in Java for Mac

We're learning file input and output in my programming class right now, but I have a Macbook Pro. I understand how to do it and I can do it on Windows but I'm having trouble finding out how to do it ...
0
votes
1answer
49 views

is there a library can work with input file that contains descriptions and values?

i'm looking for a library that can do the following : ask questions and generate an input file read that input file while reading the modified input file, the lib assigns the value into the program ...
0
votes
2answers
166 views

Prompt a confirmation page for a form with FileInput field in Django

I'm developing an admin interface (without a model) for a data restore process. The form on the page allows user to upload a restore file. Now, what I'd like to do is, when the user submit the form, I ...
0
votes
3answers
4k views

jQuery: Uploading an image on fileinput.change();

i have a fileinput control in my html form, which automatically uploads an image to the server once it has been picked up by the user: <input id="uploadedfile" name="uploadedfile" type="file" ...
0
votes
5answers
332 views

C++ heap and ifstream read function

for my assignment I am building a heap, the data for the heap is coming from a file. One of the functions is to get the data, but I am having trouble understanding the ifstream read() function and am ...
0
votes
1answer
25 views

set input value to file located on server

Ok im really new to amazon s3 just created my account today. im tring to upload files from my server to my S3 account via POST Proposal. i got at working form that has a input type file but i dont ...
0
votes
2answers
47 views

How do I refer to the file that a user has selected in an input box in HTML?

I have a file input box on my page, created by the following HTML: <input type="file" id="imagefile" accept="image/gif" /> I'm using the file input to upload a file using the Imageshack API. ...
0
votes
1answer
244 views

How can I preview the file in a file input using JavaScript?

I want to be able to preview an image for a user before they upload it. I've of course discovered that all the modern browsers obscure the actual full path in one way or another, so my original plan ...
0
votes
1answer
51 views

Running a program from a file in Eclipse

How do you run a java program that requires input from a file in Eclipse?
0
votes
1answer
423 views

is it possible to clear struts2 file input tag?

I am using Struts2 for a web application development. i have this particular problem for which i couldnt find a solution even after i googled. I have 3 tags with a hyperlink or button against each, ...
0
votes
2answers
1k views

problem with google chrome and fileinput

We have a web site where a user can upload their resume. If they upload it in any browser it works fine. If they do NOT upload a document it works fine in all browsers but google chrome. We have a ...
-1
votes
2answers
169 views

File Input Java Mac

I'm writing up a program that goes into a basic .txt file and prints certain things. It is a comma-delimited file. The file includes 7 first and last names, and also 4 numbers after. Each of the seven ...