報錯: Error: An invalid character [32] was present in the Cookie value
錯誤代碼:
原因: character [32]在是空格 代碼中的日期格式"yyyy-MM-dd HH:mm:ss" 有空格
解決方法: 日期格式中不要有空格 如: yyyy年MM月dd日HH時mm分ss秒
或者
對Date字元串進行編碼URLEncoder.encode(format.format(new Date()), "utf-8") 但讀取的時還需要進行解碼 URLDecoder.decode(curTime, "utf-8"))