我在https://developers.google.com/+/quickstart/java处于java google快速入门教程时遇到问题我现在步入 3.2 但每当我运行
java -classpath "bin:lib/*" com.google.plus.samples.quickstart.Signin
我收到错误
Exception in thread "main" java.lang.NoClassDefFoundError: com/google/plus/sampl
es/quickstart/Signin
Caused by: java.lang.ClassNotFoundException: com.google.plus.samples.quickstart. Signin
我在C:\ Users \ myname \ Desktop \ gplus-quickstart-java-master>
下运行之前使用过该教程的人遇到此错误?我该如何解决这个问题?先谢谢你们。
答案 0 :(得分:2)
尝试使用java -classpath "bin;lib/*" com.google.plus.samples.quickstart.Signin
,因为;
是Windows下正确的路径分隔符。