coap-client
is a wget-like tool to generate simple requests for retrieval and modification of resources on a remote server.
2021年7月18日
coap-client 4.3.0 Windows build
2021年1月24日
在WIN10使用mvn compile java 時找不到JDK
使用mvn compile JAVA project時出現以下錯誤訊息,但JDK已經安裝而且也在使用者PATH路徑下
[INFO] -------------------------------------------------------------
[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
[INFO] 1 error
[ERROR] COMPILATION ERROR :
[INFO] -------------------------------------------------------------
[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
[INFO] 1 error
原因在WIN10下, 已將Oracle\Java\javapath變數加在"系統變數"下. 並非指到安裝的JDK.
以連結的形式 指到子目錄javapath_target_149203015下的3個執行檔
訂閱:
文章 (Atom)
coap-client 4.3.0 Windows build
coap-client is a wget -like tool to generate simple requests for retrieval and modification of resources on a remote server. Got the sour...
-
選擇用tinc的原因是因為官網的這句話. Automatic full mesh routing Regardless of how you set up the tinc daemons to connect to each other, VPN traffic i...
-
雖然遠端桌面時, 可以在client端設定是否要將遠端的音訊重新導向到本機, 當你有多台Server要遠端控制時就不會想要每次修改設定. 我的解決方式是修改遠端Server的音效設定值. 修改群組原則的設定.
-
寫bash script時候, 用grep或awk取出來的值, 裡面還包含了一些non-printable的字; 作字串比對時, 就會一直出錯. 這時可以用 tr 這個指令移除看不到的字(如換行符號): # echo $VAR_WITH_NON_PRINT | tr -d ...