目前日本為了流暢入境日本的程序,將入境資料電子化,提供入境日本的人申請Visit Japan Web,內容包含「入境審查」、「海關申報」、「檢疫(快速通關)」的資料。
✅ Visit Japan Web官網:https://www.vjw.digital.go.jp/
目前韓國針對免簽入境韓國並符合以觀光、訪問親友、會議或商務(營利目的除外)等目的入境者採用K-ETA(電子旅行許可制)。2022/11/1
熊本駅前~阿蘇駅前約2小時 ( 發車時間:7:49 ~ 17:20 )
單程 | 來回 | |
---|---|---|
敬老票(65歲以上) | 8,000円 | 16,000円 |
大人(12歲以上) | 16,000円 | 32,000円 |
6~11歲 | 8,000円 | 16,000円 |
1~5歲、0歲佔位 | 2,000円 | 4,000円 |
0歲不佔位 | 免費 |
今天遇到要登入日本AMAZOZ無法登入,要進行手機認證 (如下圖),試了3電腦、2台手機登入都一樣要我做認證,然後手機又收不到訊息。
經過查詢網路和自己隨便按,發現有一個OPT登入可以使用,
步驟如下
1. 網站語言切換成英文
2. 登入輸入你的手機號碼(如下圖)
資料寫入檔案
/** * 產檔 * @param filePathLocal 路徑 * @param fileName 檔名 * @param str內容 * @throws IOException */ public void mkFile(String filePathLocal, String fileName, String str) throws IOException { File file = new File(filePathLocal); if (!file.isDirectory()) { file.mkdirs(); //資料夾權限 file.setReadable(true, false); file.setExecutable(true, false); file.setWritable(true, false); } Path localFile = Paths.get(filePathLocal, fileName); BufferedWriter writer = Files.newBufferedWriter(localFile, StandardCharsets.UTF_8); writer.write(xml); writer.close(); }