The filesplitting tag has no wiki summary.
0
votes
1answer
68 views
Hadoop FileSplit reading
Assume a client application that uses a FileSplit object in order to read the actual bytes from the corresponding file.
To do so, an InputStream object has to be created from the FileSplit, via code ...
1
vote
1answer
73 views
Hadoop Distribution File System
I would like to modify the way an input file is split into blocks and stored in Hadoop Distributed File System.(example it splits the file based on block size but my application requires to split the ...
1
vote
1answer
148 views
How to check if zip file is split across multiple archives using python's zipfile lib?
According to the zip file standard: http://www.pkware.com/documents/casestudies/APPNOTE.TXT it also supports splitting a zip file across multiple files:
Spanned/Split archives ...
0
votes
1answer
239 views
In Java, I want to split an array into smaller arrays, the length of which varys with inputted text files
So far, I have 2 arrays: one with stock codes and one with a list of file names. What I want to do is input the .txt files from each of the file names from the second array and then split this input ...
0
votes
0answers
204 views
How to split a large file into small chunks (in Grails) so as to insert into a db as a BLOB
We are using Grails 2.0.1 I have a controller which reads a uploaded file from my GSP as inputstream , I want to split this file into chunks in the controller so as to be able to insert the file data ...
0
votes
1answer
1k views
Folder path of select file in AppleScript
I'm creating simple script to convert mp3 files using shell script. I decided to automate my conversion using applescript.
Basically what I'm doing is selecting mp3 file then splitting that file using ...
3
votes
1answer
1k views
Get input file name in streaming hadoop program
I am able to find the name if the input file in a mapper class using FileSplit when writing the program in Java.
Is there a corresponding way to do this when I write a program in Python (using ...
0
votes
2answers
156 views
C++ file splitter question [closed]
I can easily split the file by using fwrite function and save in a hard-disk like this:
fwrite( buffer, sizeof( char ), bytes_read, outFile );
But I would like to know how can I store each chunk of ...
0
votes
2answers
534 views
Split XML file by number of records/treshold and copy header - XSLT 1.0
I have the following XML structure
<?xml version="1.0" encoding="UTF-8"?>
<ExportData>
<TransportHeader>
<Timestamp>2011-01-16 06:00:33</Timestamp>
<From>
...
0
votes
2answers
262 views
Filesplitter using .php
i m designing a website where users upload file, but the free webhost provides us only 3mb per file limit, so can i design a filesplitter using .php which splits a file(>3mb) into 3mb chunks and then ...
0
votes
3answers
128 views
How to map a set of text as a whole to a node?
Suppose I have a plain text file with the following data:
DataSetOne <br />
content <br />
content <br />
content <br />
DataSetTwo <br />
content <br />
content ...
22
votes
1answer
20k views
How to file split at a line number [closed]
I want to split a 400k line long log file from a particular line number.
For this question, lets make this an arbitrary number 300k.
Is there a linux function that allows me to do this?
I know ...
1
vote
2answers
1k views
A way to split a huge XML file into smaller xml files with XSL
I get a huge XML file containing a list of TV broadcasts. And I have to split it up into small files containing all broadcasts for one day only. I managed to to that but have two problems with the xml ...
0
votes
2answers
601 views
WAV file splitter utility
I have a PROGRAMMING task (homework) to investigate brute force neural net methods. That part of the problem is MY homework.
We have to show that certain simple words repeated in a verbal conversion ...
2
votes
4answers
2k views
How to split file on first empty line in a portable way in shell (e.g. using sed)?
I want to split a file containg HTTP response into two files: one containing only HTTP headers, and one containg the body of a message. For this I need to split a file into two on first empty line ...
5
votes
2answers
344 views
How does Mercurial handle splitted files?
How does mercurial handle splitted files? What will happen if I create a branch and split a file. Can I easily pull changes from another branch which modifies the original, unsplitted file?
1
vote
3answers
3k views
Splitting a file and its lines under Linux/bash
I have a rather large file (150 million lines of 10 chars). I need to split it in 150 files of 2 million lines, with each output line being alternatively the first 5 characters or the last 5 ...