??????? ???, ?????????? ?????????

 
 
 
Сообщения:22
import se.todos.ecode.*;

import java.io.*;
import java.util.*;
import java.util.regex.*;

public class Main {
	
	public static void main(String[] args) throws Exception{
	
		String sourceFileName = "d:\\devspace\\users.csv";
		BufferedReader sourceFile = new BufferedReader (new FileReader(sourceFileName));
		String resultFileName = "d:\\devspace\\users_result.txt";
		BufferedWriter resultFile = new BufferedWriter (new FileWriter(resultFileName, true)); // ??? ???????? ? ????
		String line = "";
		String userID = "";
		String splitter = ";";
		String[] status = {" - OK", " - not find", " - deleting error"};
		
		try{
			resultFile.write(new Date().toString());//?????? ? ??????? ?????
			resultFile.newLine();
			
			while ((line = sourceFile.readLine()) != null) {
				
				userID = line.split(splitter)[0];
				if (Pattern.matches("[0-9]+", userID)){
					
					//TODO ????? ???????, ???????? ?????????? ??????????
					// API - ErrorCodeText ???????? ? ???, ???? ??????? 
					//DeactivateUser - ?	
					//BlockUser - ?
					
					resultFile.write(userID + status[0]);
					resultFile.newLine();
				}else{
					System.out.println(userID + " - ??? ?? ID ????????????");
				}
			}
			
		}catch (FileNotFoundException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		} finally {
			try {
				sourceFile.close();
				resultFile.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
		System.out.println("Done");
	}
}
 
Модераторы:MariiactapobepMasha NissemasyangesserLuckyellekatvitalik14avduntiycactus_1Shogunlamaocactus_2AlisaTestTest_TestTest_Test2krotovzdubiiREISETest_AlexTPavel GradobikKeiranKikooswatikQAPashaDentonitedvantvirtus80v2SpooonkaHelmax27alex_popov2alex_popovAndrey S.valentin_ospMuzhichokPetraStilltest_07.03newuser123valentin_testvalentin_testuaPetra_EvaodonacerAlisa Kalashnikovafanyfanyuserjc1422!@#$%&()_<>}{]['/?~```JulikIgorSssigorssalegggaaaaaaaaaaaaaaaaaaaaaaaaaatest11huba2LEYApoliplohubbniksKarasikНадежда ФедороваMicrasturкококоLizanata_cknebytWizliVarroAleksandrKLaMaCHtes3tadmin
Сейчас эту тему просматривают:Нет