我无法运行Java程序

我无法运行Java程序

本文介绍了我无法运行Java程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我开始学习Java。我按照教程介绍了如何安装它。 我还通过在cmd中键入javac(不带引号)来检查它是否有效。是的,它提供了一个完整的文本列表,这意味着它应该工作,对吗?I was starting to learn Java. I followed the tutorial on how to install it.I also checked by typing "javac"(without the quotation marks) in cmd if it works. And yes it gives a whole list of text which means its supposed to work, right?这是我的java代码:This is my java code:class apples{ public static void main(String args[]) { System.out.printIn("hello youtube"); }}我将其保存在名为'test'的文件夹中我的车。 这是我在cmd中输入的内容:I saved it in a folder called 'test' in my c drive.This is what I typed in cmd:cd \dir 现在它列出了我的c盘中的所有内容,其中一个是测试cd testdir现在它列出了测试中的所有内容,其中一个是' youtube.java '(我命名的文件),所以我输入Now it lists everything in test and one of them is 'youtube.java'(the file I named), so I typejavac youtube.java这不起作用这就是它给我的:This doesn't workThis is what it gives me:有人能帮帮我吗?推荐答案你的通话中有拼写错误。更改You have a typo in your call. ChangeSystem.out.printIn("hello youtube"); // capital 'I'到System.out.println("hello youtube"); // lowercase 'l'如前所述,在Java中,文件中的public 类必须与文件名匹配。And as has been mentioned already, in Java, the public class in a file must match the filename. 这篇关于我无法运行Java程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
09-05 07:35