FileManager.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. package eu.tankernn.accounts;
  2. import java.io.BufferedReader;
  3. import java.io.File;
  4. import java.io.FileInputStream;
  5. import java.io.FileNotFoundException;
  6. import java.io.FileOutputStream;
  7. import java.io.FileReader;
  8. import java.io.IOException;
  9. import java.io.ObjectInputStream;
  10. import java.io.ObjectStreamException;
  11. import javax.swing.JOptionPane;
  12. import eu.tankernn.accounts.util.encryption.EncryptedComplex;
  13. import eu.tankernn.accounts.util.encryption.Encryption;
  14. import eu.tankernn.accounts.util.encryption.InvalidPasswordException;
  15. public class FileManager {
  16. /**
  17. * Loads the accounts in the file specified.
  18. *
  19. * @return A JSON-string containing the account information.
  20. * @throws InvalidPasswordException
  21. */
  22. public static String openFile(File file, char[] password) throws IOException, InvalidPasswordException {
  23. Object data = null;
  24. try {
  25. // Try to read the file as a byte[][]
  26. data = readObjectFromFile(file, byte[][].class);
  27. } catch (ObjectStreamException | ClassNotFoundException e1) {
  28. // Read the file as string
  29. data = readFileAsString(file);
  30. }
  31. String jsonString;
  32. // If '[' is first, the JSON is *probably* valid
  33. if (data instanceof String && ((String) data).startsWith("[")) {
  34. jsonString = new String((String) data);
  35. } else {
  36. if (password == null)
  37. throw new InvalidPasswordException();
  38. // Try to decrypt the string or byte[][]
  39. jsonString = data instanceof String ? Encryption.decryptEncoded((String) data, password)
  40. : Encryption.decrypt(new EncryptedComplex((byte[][]) data), password);
  41. }
  42. return jsonString;
  43. }
  44. public static void saveFile(File file, String data, char[] password) {
  45. saveFile(file, Encryption.encryptEncoded(data, password));
  46. }
  47. static String readFileAsString(File file) throws IOException {
  48. BufferedReader reader = new BufferedReader(new FileReader(file));
  49. StringBuilder builder = new StringBuilder();
  50. while (reader.ready()) {
  51. builder.append(reader.readLine());
  52. }
  53. reader.close();
  54. return builder.toString();
  55. }
  56. /**
  57. * Writes a string to a file.
  58. */
  59. public static void saveFile(File file, String contents) {
  60. writeBytesToFile(file, contents.getBytes());
  61. }
  62. private static void writeBytesToFile(File file, byte[] data) {
  63. try {
  64. FileOutputStream writer = new FileOutputStream(file);
  65. writer.write(data, 0, data.length);
  66. writer.flush();
  67. writer.close();
  68. } catch (IOException e) {
  69. JOptionPane.showOptionDialog(null, "Unable to create or write to file \'" + file.getAbsolutePath() + "\'.",
  70. "Error writing file", JOptionPane.OK_OPTION, JOptionPane.ERROR_MESSAGE, null, null, null);
  71. e.printStackTrace();
  72. }
  73. }
  74. public static <T> T readObjectFromFile(File file, Class<T> class1)
  75. throws ClassNotFoundException, FileNotFoundException, IOException {
  76. ObjectInputStream in = new ObjectInputStream(new FileInputStream(file));
  77. T obj = class1.cast(in.readObject());
  78. in.close();
  79. return obj;
  80. }
  81. }