Questions tagged [filesplitting]
87 questions
0
votes
1 answer
How to aggregate exchanges without restrictions
We have current situation. I use Apache Camel, split large file for small exchanges (using splitter, see below) and validate them. Then I need aggregate messages, but I use aggregator and it requires setup complition size or another. Can I aggragate…

Olena Nagorna
- 25
- 6
0
votes
1 answer
C++ Powerball - File Splitting & Error (gameType)
Its been a while since I done C++, but I'm trying to split this program into three files. (Driver.cpp, Powerball.cpp and Powerball.h) and I think everything is in the right place. With the current version, I'm getting the following error messages…

Mario
- 83
- 2
- 3
- 10
0
votes
2 answers
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 might be able to be recognized as similar. We…

kingchris
- 1,677
- 22
- 29
0
votes
1 answer
HDFS FileSplit locations
I have a cluster with an installation of hadoop-2.1.0-beta. Is there a way to learn where each filesplit is located in my cluster? What I am looking for is a list such as the following
filesplit_0001 node1
filesplit_0002 node4
...
edit: I know that…

polerto
- 1,750
- 5
- 29
- 50
0
votes
2 answers
Split number to equal parts where the last part is equal or lower to the rest
I have a file that I want to split into 100 pieces.
The file size is 257019 bytes.
When running my splitter code below I get 99 parts with a size of 2545 byte and the last 100'th part is 5064 byte.
I need help to figure out how to make the first…

Erik
- 5,039
- 10
- 63
- 119
0
votes
1 answer
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 into: 1. Arrays for each file 2. Arrays for each…
user1486147
-1
votes
2 answers
awk command to split an 8GB file into multiple files basis number of rows with new filename and header in each file
awk command to split an 8GB file into multiple files basis number of rows with new filename and header in each file
I have an 8GB file with 26 column headers. I have to split it into multiple files with each file having 400000 lakhs including…

user16334809
- 3
- 4
-1
votes
1 answer
Android file splitter and joining is not work for apk file
I used this (https://github.com/huntergdavis/Easy_File_Split_And_Join) program to split and joining the files. Everything works perfect expect apk files. The program could successfully split and join video files and so on but fails to do the same…

fazil tm
- 299
- 1
- 5
- 23
-2
votes
1 answer
How to merge and split again thousands of text files?
I have thousands of .txt files. These text files include one string. (Every file has different string.)
I want to edit these strings but i don't want to manually open each file one-by-one for editing. So i want to merge all these files into a single…
user10654665
-3
votes
1 answer
Splitting data using awk but column name missing
I managed to get this command as I want but why my column name excluded?
this is my command
awk \
-v DATE="$(date +"%d%m%Y")" \
-F"," \
'BEGIN{OFS=","} NR>1{ gsub(/"/,"",$1); print > "Assignment_"$1"_"DATE".csv"}' \
Test_01012020.CSV
In my…

FARAH
- 33
- 1
- 7
-3
votes
1 answer
processing huge utf8 files with splitting to multiple files
i am developing a importer program for importing large text utf8 (character bytes are different) files in C#. if i load all the 20GB file to RAM, this solution is not suitable and possible. it's better to split file to multiple smaller files to…

user2352554
- 521
- 4
- 17
-4
votes
1 answer
xml parsing and spliting in Scala
I want to split a sub xml from mail xml with the help of the node name. Can some one help?
sample.xml
I want to split the sub xml that contains B using Scala.

Barath
- 107
- 2
- 14