This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.test; | |
| import java.io.*; | |
| import java.util.Scanner; | |
| public class Main { | |
| public static void main(String[] args) throws IOException { | |
| try (Scanner scan = new Scanner(new BufferedInputStream(new FileInputStream("C:\\R3\\par.txt")))) { | |
| while (scan.hasNext()) { | |
| String validString = scan.nextLine(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [INFO] Reactor Summary for sfg-pet-clinic 0.0.1: | |
| [INFO] | |
| [INFO] sfg-pet-clinic ..................................... FAILURE [ 0.721 s] | |
| [INFO] pet-clinic-data .................................... SKIPPED | |
| [INFO] pet-clinic-web ..................................... SKIPPED | |
| [INFO] ------------------------------------------------------------------------ | |
| [INFO] BUILD FAILURE | |
| [INFO] ------------------------------------------------------------------------ | |
| [INFO] Total time: 1.426 s | |
| [INFO] Finished at: 2020-06-08T12:09:37+01:00 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (("1549327992429".to_i/1000).seconds).in_time_zone("America/Los_Angeles") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (("1970-01-01T00:00:00Z").to_time + ("1549327992429".to_i/1000).seconds).in_time_zone("America/Los_Angeles") |