spliiting code in java-don't know what's wrong [closed]
- by ???? ?????
I'm writing a code to split a file into many files with a size specified in the code, and then it will join these parts later. The problem is with the joining code, it doesn't work and I can't figure what is wrong! This is my code:
import java.io.*;
import java.util.*;
public class StupidSplit {
static final int Chunk_Size = 10;
static…