Could you please also give me a code that does not use
the string split method but instead gives an input and output file
that you have to compile using "type output.txt" in
java.
This is the code:
Record.java
public class Record {
private String stateCode, districCode, districtName;
private int totalPopulation, childPopulation,
childPovertyPopulation;
private String miscStats;
public Record(String stateCode, String districCode, String
districtName, int totalPopulation,
int childPopulation, int childPovertyPopulation, String miscStats)
{
this.stateCode = stateCode;
this.districCode = districCode;
this.districtName =...