如何在 Ubuntu 中设置 Java 环境路径

How to set Java environment path in Ubuntu(如何在 Ubuntu 中设置 Java 环境路径)
本文介绍了如何在 Ubuntu 中设置 Java 环境路径的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚刚在 Ubuntu 中使用 sudo apt-get install openjdk-6-jdk 命令安装了 JDK,安装后Java bin 目录在哪里?以及如何设置该目录的环境路径?我对 Ubuntu 没有什么经验,谁能给点建议或推荐任何好的网站以供参考?

I just installed JDK in Ubuntu with sudo apt-get install openjdk-6-jdk command, after the installation where's the Java bin directory located? And how can I set the environment path for that directory? I have little experience with Ubuntu, can anyone give some advice or suggest any good website for reference?

推荐答案

设置环境变量如下

编辑系统路径文件/etc/profile

Edit the system Path file /etc/profile

sudo gedit /etc/profile

在末尾添加以下行

JAVA_HOME=/usr/lib/jvm/jdk1.7.0
PATH=$PATH:$HOME/bin:$JAVA_HOME/bin
export JAVA_HOME
export JRE_HOME
export PATH

然后注销并登录 ubuntu 以设置路径...

Then Log out and Log in ubuntu for setting up the paths...

这篇关于如何在 Ubuntu 中设置 Java 环境路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Where do I install a jdbc driver on ubuntu?(我在ubuntu上哪里安装JDBC驱动程序?)
OpenCV 3.0.0 java.lang.UnsatisfiedLinkError in Eclipse(Eclipse中的OpenCV 3.0.0 java.lang.UnssubfiedLinkError)
Eclipse in Ubuntu: hover background color property, where?(Ubuntu中的Eclipse:悬停背景颜色属性,在哪里?)
Upload file on every save with Rsync(使用 Rsync 在每次保存时上传文件)
Erros in trying to synchronize Eclipse workspace files across a Windows machine and an Ubuntu machine; which files must or must not be included?(尝试在 Windows 机器和 Ubuntu 机器上同步 Eclipse 工作区文件时出错;哪些文件必须包含或不能包含?)
Java Fullscreen mode not working on Ubuntu(Java 全屏模式在 Ubuntu 上不起作用)