从txt文件逐个字符读取文本(用户:pass)

时间:2019-03-11 20:47:52

标签: java file text

我正在尝试从Java中的.txt文件读取用户名和密码。 文件格式如下:

user1:pass1
user2:pass2
user3:pass3

我的代码无法正确读取密码,有任何提示吗? 编辑:还缺少最后一个密码,因为缺少最后一个\n,有什么方法可以修复它,而不是向txt文件添加多余的换行符?

try {
    FileReader fileReader = new FileReader(filename);
    BufferedReader bufferedReader = new BufferedReader(fileReader);

    int c;
    String user = "";
    String pass = "";
    char helper = 0;

    while(( c = bufferedReader.read()) != -1 ) {
        System.out.println((char)c);
        if((char)c == '\n') {
            ftpServer.addUser(user, pass);
            //System.out.printf("%s", pass);
            user = "";
            pass = "";
            helper = 0;
        } else {
            if ((char) c == ':') {
                helper = ':';
            }
            if (helper == 0) {
                user += (char) c;
            }
            if (helper == ':') {
                if ((char) c != ':')
                    pass += (char) c;
            }
        }
    }
    bufferedReader.close();
}

4 个答案:

答案 0 :(得分:3)

  

如果使用JAVA:8和8+,则可以在文件上使用流-java.nio.files

Path path = Paths.get(filename);
    try (Stream<String> lines = Files.lines(path)) {
        lines.forEach(s -> {
            if (s.contains(":")) {
                String[] line = s.split(":");
                String userName = line[0];
                String pass = line[1];
                System.out.println("User name: " + userName + " password: " + pass);
            }
        });
    } catch (IOException ex) {
        // do something or re-throw...
    }
  

或使用BufferedReader

BufferedReader reader;
    try {
        reader = new BufferedReader(new FileReader("/Users/kants/test.txt"));
        String lineInFile = reader.readLine();
        while (lineInFile != null) {
            if (lineInFile.contains(":")) {
                String[] line = lineInFile.split(":");
                String userName = line[0];
                String pass = line[1];
                System.out.println("User name: " + userName + " password: " + pass);
            }
            lineInFile = reader.readLine();
        }
        reader.close();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

注意:您必须进一步添加null检查和try-catch处理。上面的代码只是向您展示逻辑。

答案 1 :(得分:1)

我认为您不需要其他循环

public static void main(String[] args) throws IOException {
        BufferedReader reader;
        try {
            reader = new BufferedReader(new FileReader(
                    "path/to/file"));
            String line = reader.readLine();
            while (line != null) {
                System.out.println(line);
                // read next line
                line = reader.readLine();
                if (line.contains(":")) {
                    String user = line.split(":")[0];
                    String pass = line.split(":")[1];
                    System.out.println("User is " + user + "Password is " + pass);
                }            }
            reader.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

打印

user1:pass1
User is user2Password is pass2
user2:pass2
User is user3Password is pass3
user3:pass3

答案 2 :(得分:0)

这是一个详细的实现-

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.HashSet;
import java.util.Set;
import java.util.stream.Stream;

public class ReadFileAsStream {

    public static void main(String... arguments) {
        CredentialsParser parser;
        try {
            parser = new CredentialsParser("c:/temp/credtest.txt");
            Credential[] credentials = parser.getCredentials();
            for (Credential credential : credentials) {
                System.out.println(String.format("%s : %s", credential.getUsername(), credential.getPassword()));
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

//Parser for the credentials file format
class CredentialsParser {
    private Set<Credential> credentials = new HashSet<>();
    String filename = null;

    public CredentialsParser() {
        super();
    }

    public CredentialsParser(String filename) throws IOException {
        super();
        setFilename(filename);

        if (getFilename() != null) {
            parseCredentialsFile();
        }
    }

    public Credential[] getCredentials() {
        return credentials.toArray(new Credential[credentials.size()]);
    }

    // method to add credentials
    public void addCredential(String entry) {
        if (entry.indexOf(':') > -1) {
            String[] values = entry.split(":");
            credentials.add(new Credential(values[0], values[1]));
        }
    }

    public String getFilename() {
        return filename;
    }

    public void setFilename(String filename) {
        this.filename = filename;
    }

    protected void parseCredentialsFile() throws IOException {
        // read file into stream, try-with-resources
        try (Stream<String> stream = Files.lines(Paths.get(filename))) {
            stream.forEach(this::addCredential);
        }
    }
}

// Value holder for each credential entry
class Credential {
    private String username = null;
    private String password = null;

    public Credential() {
        super();
    }

    public Credential(String username, String password) {
        super();
        this.username = username;
        this.password = password;
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }
}

答案 3 :(得分:0)

请为此修改您的代码:

使用split方法使您的工作变得轻松:)

public class Example {

    public static void main(String[] args) {
        BufferedReader reader;
        try {
            reader = new BufferedReader(new FileReader("F://test.txt"));
            String line = reader.readLine();
            while (line != null) {
                String[] lineParts = line.split(":");
                System.out.println("user : " + lineParts[0]);
                System.out.println("password : " + lineParts[1]);
                line = reader.readLine();
            }
            reader.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

}

在test.txt中:

user1:pass1
user2:pass2
user3:pass3

输出:

user : user1
password : pass1
user : user2
password : pass2
user : user3
password : pass3