小弟最近在寫一套程式,其中電腦Server端接到手機傳來的座標資訊
然後由電腦端產生google map api的html檔畫出軌跡
接到手機端送過來的位置資訊是用
String information = "";
String coordinate = "\tnew google.maps.LatLng("+latitude+","+longitude+"),\r\n";
information = information + coordinate;
接著把information放進html檔畫線的部分
可是問題來了
在information區塊 結尾的地方都會多出一個null
這個null會導致程式錯誤
請問各位大大要怎麼解決null的問題呢??