原创 HttpClient發起Http/Https請求工具類

本文涉及到的主要依賴:<dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <v

原创 IDEA 啓動報錯could not find main class com/intellij/idea/main解決辦法

1.現象:安裝完首次打開 intellij 出現 could not find main class com/intellij/idea/main?2:解決辦法You should create IDEA_JDK_64 environme

原创 Map集合中get不存在的key值

先來看下面的代碼: Map<String, String> map = new HashMap<>(); String test = map.get("test"); System.out.println(test); 輸出結果: nu