Nothing
# Copyright (C) Tal Galili
#
# This file is part of installr.
#
# installr is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# installr is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# A copy of the GNU General Public License is available at
# http://www.r-project.org/Licenses/
#
#' @title Install Java - downloads and set path openjdk
#' @aliases install.Java install.jdk install.Jdk install.openjdk install.OpenJdk
#' @description Downloads and set path the latest version of openjdk for Windows.
#' @details
#' install openjdk 9 or 10 version for windows.
#'
#' @return TRUE/FALSE - was the installation successful or not.
#' @author Chan-Yub Park And Tal Galili
#' @param version 9 or 10 is passible. Default is 11.
#' @param page_with_download_url where to download. Default is \url{https://jdk.java.net/java-se-ri/11}
#' @param path where to set java. Default path is C:/java
#' @examples
#' \dontrun{
#' install.java()
#' install.java(version = 11)
#' install.java(11)
#' }
#' @name install.java
NULL
#' @export
#' @rdname install.java
install.java <- function(version = 11,
page_with_download_url = "https://jdk.java.net/java-se-ri/",
path = "C:/java") {
page <- readLines(paste0(page_with_download_url, version), warn = F)
target_line <- grep("windows", page, value = T)[1]
pat <- "https://.+?(zip|gz)"
m <- regexpr(pat, target_line)
URL <- regmatches(target_line, m)
filename <- file.path(tempdir(), file.name.from.url(URL))
download.file(URL, destfile = filename, mode = 'wb')
if (grepl("zip$", URL)) {
unzip(zipfile = filename, exdir = path)
}
if (grepl("gz$", URL)) {
untar(tarfile = filename, exdir = path)
}
path_list <- list.dirs(path)
home_path <- grep("jdk-[0-9]+$", path_list, value = T)
home_path <- grep(version, home_path, value = T)
profiled <- paste0("Sys.setenv(JAVA_HOME='", home_path, "')")
if (!file.exists("~/.Rprofile")) {
file.create("~/.Rprofile")
}
pre <- readLines("~/.Rprofile", warn = F)
if(any(grepl("JAVA_HOME",pre))){
pre <- pre[-grep("JAVA_HOME", pre)]
}
profiled <- c(pre, profiled)
write(profiled, "~/.Rprofile")
Sys.setenv(JAVA_HOME=home_path)
}
#' @export
#' @rdname install.java
install.Java <- install.java
#' @export
#' @rdname install.java
install.jdk <- install.java
#' @export
#' @rdname install.java
install.Jdk <- install.java
#' @export
#' @rdname install.java
install.openjdk <- install.java
#' @export
#' @rdname install.java
install.OpenJdk <- install.java
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.