我最终的解决方案是卸载了network-manager,安装wicd 如果没有卸载完全,wicd会return无线连接的bad password 以下的清理和重启命令就解决了这个问题 sudo apt-get remove network-manager sudo /etc/init.d/wicd restart
分类 ‘tech’ 的归档
课程链接:http://see.stanford.edu/see/courses.aspx 上线课程: Introduction to Computer Science Programming Methodology CS106A Programming Abstractions CS106B Programming Paradigms CS107 Artificial Intelligence Introduction to Robotics CS223A Natural Language Processing CS224N Machine Learning CS229 Linear Systems and Optimization The Fourier Transform and its Applications EE261 Introduction to Linear Dynamical Systems EE263 Convex Optimization I EE364A Convex Optimization II EE364B Additional School [...]
LoadResources
Posted in tech on 2010年12月13日 | Leave a Comment »
The thing is, whenever you use a class loader to load resources, you need to pass the absolute path for the resource. Let’s say you have a resource called “resource.txt” located in the same location as the java.lang.String class file. Then String.class.getResource(“resource.txt”) will return a URL to that resource. Now if you use the String [...]