Linux -- Ubuntu搭建java开发环境
Steps
- 1
Check to see if your Ubuntu Linux operating system architecture is 32-bit or 64-bit, open up a terminal and run the following command below.
- Type/Copy/Paste: file /sbin/init
- Note the bit version of your Ubuntu Linux operating system architecture it will display whether it is 32-bit or 64-bit.
- Type/Copy/Paste: file /sbin/init
- 2
Check if you have Java installed on your system. To do this, you will have to run the Java version command from terminal.
- Open up a terminal and enter the following command:
- Type/Copy/Paste: java -version
- If you have OpenJDK installed on your system it may look like this:
- java version "1.7.0_15"
OpenJDK Runtime Environment (IcedTea6 1.10pre) (7b15~pre1-0lucid1)
OpenJDK 64-Bit Server VM (build 19.0-b09, mixed mode)
- java version "1.7.0_15"
- If you have OpenJDK installed on your system, you have the wrong vendor version of Java installed for this exercise.
- Open up a terminal and enter the following command:
- 3
Completely remove the OpenJDK/JRE from your system and create a directory to hold your Oracle Java JDK/JRE binaries. This will prevent system conflicts and confusion between different vendor versions of Java. For example, if you have the OpenJDK/JRE installed on your system, you can remove it by typing the following at the command line:
- Type/Copy/Paste: sudo apt-get purge openjdk-\*
- This command will completely remove OpenJDK/JRE from your system
- Type/Copy/Paste: sudo mkdir -p /usr/local/java
- This command will create a directory to hold your Oracle Java JDK and JRE binaries.
- Type/Copy/Paste: sudo apt-get purge openjdk-\*
- 4
Download the Oracle Java JDK for Linux. Make sure you select the correct compressed binaries for your system architecture 32-bit or 64-bit (which end in tar.gz).
- For example, if you are on Ubuntu Linux 32-bit operating system download 32-bit Oracle Java binaries.
- For example, if you are on Ubuntu Linux 64-bit operating system download 64-bit Oracle Java binaries.
- Optional, Download the Oracle Java JDK Documentation
- Select jdk-7u45-apidocs.zip
- Important Information: 64-bit Oracle Java binaries do not work on 32-bit Ubuntu Linux operating systems, you will receive multiple system error messages, if you attempt to install 64-bit Oracle Java on 32-bit Ubuntu Linux.
- 5
Copy the Oracle Java binaries into the /usr/local/java directory. In most cases, the Oracle Java binaries are downloaded to: /home/"your_user_name"/Downloads.
- 32-bit Oracle Java on 32-bit Ubuntu Linux installation instructions:
- Type/Copy/Paste: cd /home/"your_user_name"/Downloads
- Type/Copy/Paste: sudo cp -r jdk-7u45-linux-i586.tar.gz /usr/local/java
- Type/Copy/Paste: cd /usr/local/java
- 64-bit Oracle Java on 64-bit Ubuntu Linux installation instructions:
- Type/Copy/Paste: cd /home/"your_user_name"/Downloads
- Type/Copy/Paste: sudo cp -r jdk-7u45-linux-x64.tar.gz /usr/local/java
- Type/Copy/Paste: cd /usr/local/java
- 32-bit Oracle Java on 32-bit Ubuntu Linux installation instructions:
- 6
Run the following commands on the downloaded Oracle Java tar.gz files. Make sure to do this as root in order to make them executable for all users on your system. To open a root terminal type sudo -s you will be prompted for your logon password.
- 32-bit Oracle Java on 32-bit Ubuntu Linux installation instructions:
- Type/Copy/Paste: sudo chmod a+x jdk-7u45-linux-i586.tar.gz
- 64-bit Oracle Java on 64-bit Ubuntu Linux installation instructions:
- Type/Copy/Paste: sudo chmod a+x jdk-7u45-linux-x64.tar.gz
- 32-bit Oracle Java on 32-bit Ubuntu Linux installation instructions:
- 7
Unpack the compressed Java binaries, in the directory /usr/local/java
- 32-bit Oracle Java on 32-bit Ubuntu Linux installation instructions:
- Type/Copy/Paste: sudo tar xvzf jdk-7u45-linux-i586.tar.gz
- 64-bit Oracle Java on 64-bit Ubuntu Linux installation instructions:
- Type/Copy/Paste: sudo tar xvzf jdk-7u45-linux-x64.tar.gz
- 32-bit Oracle Java on 32-bit Ubuntu Linux installation instructions:
- 8
Double-check your directories. At this point, you should have two uncompressed binary directories in /usr/local/java for the Java JDK/JRE listed as:
- Type/Copy/Paste: ls -a
- jdk1.7.0_45
- 9
Edit the system PATH file /etc/profile and add the following system variables to your system path. Use nano, gedit or any other text editor, as root, open up /etc/profile.
- Type/Copy/Paste: sudo gedit /etc/profile
- or
- Type/Copy/Paste: sudo nano /etc/profile
- 10
Scroll down to the end of the file using your arrow keys and add the following lines below to the end of your /etc/profile file:
- Type/Copy/Paste:
JAVA_HOME=/usr/local/java/jdk1.7.0_45
PATH=$PATH:$HOME/bin:$JAVA_HOME/bin
export JAVA_HOME
export PATH
- Type/Copy/Paste:
- 11
Save the /etc/profile file and exit.
- 12
Inform your Ubuntu Linux system where your Oracle Java JDK/JRE is located. This will tell the system that the new Oracle Java version is available for use.
- Type/Copy/Paste: sudo update-alternatives --install "/usr/bin/java" "java" "/usr/local/java/jdk1.7.0_45/bin/java" 1
- this command notifies the system that Oracle Java JRE is available for use
- Type/Copy/Paste: sudo update-alternatives --install "/usr/bin/javac" "javac" "/usr/local/java/jdk1.7.0_45/bin/javac" 1
- this command notifies the system that Oracle Java JDK is available for use
- Type/Copy/Paste: sudo update-alternatives --install "/usr/bin/javaws" "javaws" "/usr/local/java/jdk1.7.0_45/bin/javaws" 1
- this command notifies the system that Oracle Java Web start is available for use
- Type/Copy/Paste: sudo update-alternatives --install "/usr/bin/java" "java" "/usr/local/java/jdk1.7.0_45/bin/java" 1
- 13
Inform your Ubuntu Linux system that Oracle Java JDK/JRE must be the default Java.
- Type/Copy/Paste: sudo update-alternatives --set java /usr/local/java/jdk1.7.0_45/bin/java
- this command will set the java runtime environment for the system
- Type/Copy/Paste: sudo update-alternatives --set javac /usr/local/java/jdk1.7.0_45/bin/javac
- this command will set the javac compiler for the system
- Type/Copy/Paste: sudo update-alternatives --set javaws /usr/local/java/jdk1.7.0_45/bin/javaws
- this command will set Java Web start for the system
- Type/Copy/Paste: sudo update-alternatives --set java /usr/local/java/jdk1.7.0_45/bin/java
- 14
Reload your system wide PATH /etc/profile by typing the following command:
- Type/Copy/Paste: . /etc/profile
- Note your system-wide PATH /etc/profile file will reload after reboot of your Ubuntu Linux system
- 15
Test to see if Oracle Java was installed correctly on your system. Run the following commands and note the version of Java:
- 16
A successful installation of 32-bit Oracle Java will display:
- Type/Copy/Paste: java -version
- This command displays the version of java running on your system
- You should receive a message which displays:
- java version "1.7.0_45"
Java(TM) SE Runtime Environment (build 1.7.5_45-b18)
Java HotSpot(TM) Server VM (build 24.45-b08, mixed mode)
- java version "1.7.0_45"
- Type/Copy/Paste: javac -version
- This command lets you know that you are now able to compile Java programs from the terminal.
- You should receive a message which displays:
- javac 1.7.0_45
- Type/Copy/Paste: java -version
- 17
A successful installation of Oracle Java 64-bit will display:
- Type/Copy/Paste: java -version
- This command displays the version of java running on your system
- You should receive a message which displays:
- java version "1.7.0_45"
Java(TM) SE Runtime Environment (build 1.7.5_45-b18)
Java HotSpot(TM) 64-Bit Server VM (build 24.45-b08, mixed mode)
- java version "1.7.0_45"
- Type/Copy/Paste: javac -version
- This command lets you know that you are now able to compile Java programs from the terminal.
- You should receive a message which displays:
- javac 1.7.5_40
- Type/Copy/Paste: java -version
- 18
Congratulations, you just installed Oracle Java on your Linux system. Now reboot your Ubuntu Linux system. Afterwards, your system will be fully configured for running and developing Java programs. Later on you may want to try compiling and running your own Java programs by following this article How to Create your First Java Program on Ubuntu Linux
Linux -- Ubuntu搭建java开发环境的更多相关文章
- Ubuntu搭建Java开发环境-刘志敏-专题视频课程
Ubuntu搭建Java开发环境-3人已学习 课程介绍 主要介绍在Ubuntu环境如何安装Java开发的基本环境课程收益 学会Ubuntu中安装jdk.mysql.maven和id ...
- ubuntu搭建java开发环境
最近因为要编译Android源码,但是报错因为Java版本低于1.7.x而不能进行编译,于是进行Java版本更改. 安装前软件环境: Ubuntu14.02,Java 1.6.0_29 目标软件环境: ...
- linux中搭建java开发环境
JDK安装 http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 下载对应jdk版本, ...
- linux下搭建java开发环境
1 下载jdk包 这里下载.gz格式的,通过ftp上传到服务器 2 解压到指定目录,如/usr/java/ tar -xvf XXX.tar.gz 解压后会在/usr/java下生成一个目录,如jdk ...
- 在虚拟机中的Ubuntu搭建java开发环境
前提: 安装好虚拟机 在虚拟机中装好了Ubuntu系统 以上两步请参见我的博客(python进阶) 1 安装JDK 1.1 到官网下载jdk压缩包并保存在本地 jdk1.8:点击前往 1.2 在Ubu ...
- ubuntu下搭建JAVA开发环境【转】
转自:http://jingyan.baidu.com/article/86fae346b696633c49121a30.html JAVA开发环境是一种跨平台的程序设计语言,可以在windows.L ...
- Ubuntu系统Java开发环境的搭建
操作系统:Linux x64 / Ubuntu 14.04 Java JDK版本:jdk-8u65-linux-x64.tar.gz 声明:转载请注明出处及本文链接 本文原文地址:Ubuntu系统Ja ...
- 在 Ubuntu 13.10 中搭建Java开发环境 - 懒人版
本文记录我在Ubuntu 13.10中搭建Java开发环境. 本文环境: Ubuntu 13.10 x64运行在Win7下的VMware Workstation 10中. 1. 安装JDK与JRE s ...
- 搭建Java开发环境及相关工具
本文主要记录下在window环境下,搭建Java开发环境,及需要安装的工具软件说明,旨在方便快速完成这些正真开始开发前的准备工作. 1.JDK安装及环境配置 此处安装JDK1.8的版本,官方下载地址: ...
随机推荐
- JavaScript 学习笔记: 扩充类型的功能
JavaScript 是允许给基本类型扩充功能的.例如,可以通过对Object.prototype增加方法,可以让该方法对所有的对象都可用. 这样的方式对函数,数组,字符串,数字,正则表达式和布尔值同 ...
- java nio使用方法(转)
最近由于工作关系要做一些Java方面的开发,其中最重要的一块就是Java NIO(New I/O),尽管很早以前了解过一些,但并没有认真去看过它的实现原理,也没有机会在工作中使用,这次也好重新研究一下 ...
- 转:基于IOS上MDM技术相关资料整理及汇总
一.MDM相关知识: MDM (Mobile Device Management ),即移动设备管理.在21世纪的今天,数据是企业宝贵的资产,安全问题更是重中之重,在移动互联网时代,员工个人的设备接入 ...
- ajax返回json处理
在JS中将JSON的字符串解析成JSON数据格式,一般有两种方式: 1.一种为使用eval()函数. 2. 使用Function对象来进行返回解析. (一)以jquery异步获取的数据类型--json ...
- oracle 11g实验五——触发器的使用
实验要求: 实验五 触发器的使用 实验目的 1. 理解触发器的概念.作用及分类: 2. 掌握触发器的创建.使用: 实验内容 1. 建立表orders:用于存储订单列表信息:表order_item ...
- 推荐一个优秀的前端框架——Bootstrap
Bootstrap是Twitter推出的一个开源的用于前端开发的工具包.它由Twitter的设计师Mark Otto和Jacob Thornton合作开发,是一个CSS/HTML框架.Bootstra ...
- mysql更改数据文件目录及my.ini位置| MySQL命令详解
需求:更改mysql数据数据文件目录及my.ini位置. 步骤: 1.查找my.ini位置,可通过windows服务所对应mysql启动项,查看其对应属性->可执行文件路径,获取my.ini路径 ...
- Interface的多层继承
我有一段如下代码,定义一个接口iInterface,cBase实现iInterface,cChild继承cBase,UML为 预期是想要cBase.F()的执行逻辑,同时需要cChild的返回值,所以 ...
- Delphi中判断WebBrowser的页面是否加载完成
方法一: 在WebBrowser的OnDocumentComplete事件书写代码. 方法二: WebBrowser1.Navigate(Url); while WebBrowser1.Busy or ...
- 查看uCOS-II的CPU使用率
代码模板: void main(void) { OSInit(); /* 安装uCOS-II的任务切换向量 */ /* 创建用户起始任务TaskStart */ OSStart(); } void T ...