jvm没找到android studio windows

时间:2015-09-26 06:55:23

标签: android cordova

jvm没有找到android studio windows 8当午餐android studio.i我正确配置JAVA_HOME。请查看图片。

enter image description here

我该如何解决这些问题。

$mail = new PHPMailer;

$mail->IsSMTP();                                      // Set mailer to use SMTP
$mail->Host = 'ssl://smtp.googlemail.com';  // Specify main and backup server
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = 'samesenderaccount@gmail.com';                            // SMTP username
$mail->Password = 'appspecificpassword';                           // SMTP password
$mail->SMTPSecure = 'ssl';                            // Enable encryption, 'ssl' also accepted
$mail->Port = 465;   

$mail->From = 'samesenderaccount@gmail.com';
$mail->FromName = 'Mailer';
$mail->AddAddress('samesenderaccount@gmail.com', 'Info');  // Add a recipient
//$mail->AddAddress('ellen@example.com');               // Name is optional
$mail->AddReplyTo('other@gmail.com', 'From Try');
//$mail->AddCC('cc@example.com');
//$mail->AddBCC('bcc@example.com');

$mail->WordWrap = 50;                                 // Set word wrap to 50 characters
                                // Set email format to HTML

$mail->Subject = 'Here is the subject';
$mail->Body    = 'This is the HTML message body in bold!';

if(!$mail->Send()) {
   echo 'Message could not be sent.';
   echo 'Mailer Error: ' . $mail->ErrorInfo;
   exit;
}

echo 'Message has been sent';
?>

2 个答案:

答案 0 :(得分:0)

您好我遇到了同样的问题,简单的方法是首先从您的控制面板和相关的一个卸载java。然后重新安装新的java。并在你的工作室文件 - >项目结构 - > jdk loaction请你正确设置你的路径,如果你和工作室是旧的1.2请安装新工作室它有jdk位置

答案 1 :(得分:0)

根据您的参考图片,您在 jdk 的环境变量中提供 jre 路径。 您必须根据参考图像使用 jdk 路径更改您的环境变量。

enter image description here