This question already has answers here:
Removing whitespace from strings in Java
                                
                                    (34个答案)
                                
                        
                                3年前关闭。
            
                    
我正在做一个Java项目,我需要在URL中发送日期格式,但是date容器用空格发送它是不可能的,因此我将其转换为字符串,并使用replace方法将空格替换为“ “或”-“,但无效

这是代码:

Date date = date_debut.getDate();
String dateconver= date.toString();
String datef= dateconver.replace(" ", "");


这是错误:无法将不兼容的类型字符串转换为char

我也尝试过使用replaceAll,但是IDE甚至没有显示它

最佳答案

试试这个代码

Date date = date_debut.getDate();
String dateconver= date.toString();
String datef= dateconver.replaceAll("\\s", "");

10-06 07:26