Java Runtime Environment (64-bit)

最新版本 Java JRE 8 Update 341 (64-bit)

Java JRE 8 Update 341 (64-bit)

Java JRE 8 Update 341 (64-bit)
Java 運行時環境 64 位(JRE)允許您玩在線遊戲,與世界各地的人聊天,計算您的抵押貸款興趣,並查看三維圖像,僅舉幾例。這也是企業計算基礎的內聯網應用和其他電子商務解決方案的組成部分。下載 Java 脫機安裝程序安裝程序!

Java 運行時環境(JRE)提供庫,Java 虛擬機和其他組件來運行用 Java 編程語言編寫的小程序和應用程序。另外,兩個關鍵的部署技術是 JRE 的一部分:Java Plug-in,它允許 Applets 在常用瀏覽器中運行; 以及通過網絡部署獨立應用程序的 Java Web Start。許多跨平台應用程序還需要 Java 才能正常運行。從 FileHorse 下載適用於 PC 的 Java 64 位離線安裝程序.

Java 是 Sun Microsystems 在 1995 年首次發布的編程語言和計算平台。除非安裝了 Java,否則將會有許多應用程序和網站無法正常工作。每天。 Java 是快速,安全和可靠的。從筆記本電腦到數據中心,遊戲機到科學超級計算機,手機上網,Java 64 位無處不在! Java 是我們數字生活的核心。它是開展職業生涯,探索人機界面,構建世界上最好的應用程序,以及在各地從車庫到全球組織開創創新的平台。

為什麼要升級到最新的 Java 版本?
最新的 Java 版本包含了重要的增強功能改善在您的機器上運行的 Java 應用程序的性能,穩定性和安全性。安裝此免費更新將確保您的 Java 應用程序繼續安全有效地運行.

當我下載 Java 軟件時,我將得到什麼?
Java 運行時環境(JRE)64 位是您下載 Java 軟件時獲得的。 JRE 由 Java 虛擬機(JVM),Java 平台核心類和支持的 Java 平台庫組成。 JRE 是 Java 軟件的運行時部分,您只需在 Web 瀏覽器中運行它即可.

什麼是 Java 插件軟件?
Java 插件軟件是 Java 運行時環境(JRE)的一個組件。 JRE 允許用 Java 編程語言編寫的小程序在各種瀏覽器中運行。 Java 插件軟件不是獨立的程序,不能單獨安裝.

我聽說過 Java 虛擬機和 JVM 這兩個術語。這是 Java 軟件嗎?
Java 虛擬機只是參與 Web 交互的 Java 軟件的一個方面。 Java 虛擬機內置於 Java 軟件下載中,可幫助運行 Java 應用程序.

注意:當您的 Java 安裝完成時,您可能需要重新啟動瀏覽器(關閉所有瀏覽器窗口並重新打開)以啟用 Java 安裝。

也可用:下載 Java 運行時環境 Mac

ScreenShot

軟體資訊
檔案版本 Java JRE 8 Update 341 (64-bit)

檔案名稱 jre-8u341-windows-x64.exe
檔案大小
系統 Windows Vista64 / Windows 7 64 / Windows 8 64 / Windows 10 64
軟體類型 免費軟體
作者 Oracle
官網 http://www.java.com/en/
更新日期 2022-07-20
更新日誌

What's new in this version:

New Features:
Core-libs/java.net:
HTTPS Channel Binding Support for Java GSS/Kerberos:
- Support has been added for TLS channel binding tokens for Negotiate/Kerberos authentication over HTTPS through javax.net.HttpsURLConnection.
- Channel binding tokens are increasingly required as an enhanced form of security. They work by communicating from a client to a server the client's understanding of the binding between connection security (as represented by a TLS server cert) and higher level authentication credentials (such as a username and password). The server can then detect if the client has been fooled by a MITM and shutdown the session/connection.

The feature is controlled through a new system property `jdk.https.negotiate.cbt` which is described fully as below:
- Jdk.https.negotiate.cbt (default: "never")
- This controls the generation and sending of TLS channel binding tokens (CBT) when Kerberos or the Negotiate authentication scheme using Kerberos are employed over HTTPS with HttpsURLConnection. There are three possible settings:
- "never". This is also the default value if the property is not set. In this case, CBTs are never sent.
- "always". CBTs are sent for all Kerberos authentication attempts over HTTPS.
- "domain:" Each domain in the list specifies destination host or hosts for which a CBT is sent. Domains can be single hosts like foo, or foo.com, or literal IP addresses as specified in RFC 2732, or wildcards like *.foo.com which matches all hosts under foo.com and its sub-domains. CBTs are not sent to any destinations that don't match one of the list entries
- The channel binding tokens generated are of the type "tls-server-end-point" as defined in RFC 5929

Security-libs/javax.net.ssl:
Enable TLSv1.3 by Default on JDK 8u for Client Roles:
- The TLSv1.3 implementation is available in JDK 8u from 8u261 and enabled by default for server roles but disabled by default for client roles. From this release onwards, TLSv1.3 is now also enabled by default for client roles. You can find more details in the Additional Information section of the Oracle JRE and JDK Cryptographic Roadmap.

Other Notes:
JDK Bundle Extensions Truncated When Downloading Using Firefox 102:
- On oracle.com and java.com, certain JDK bundle extensions are getting truncated on download when using Firefox version 102. The downloaded bundles have no file extension like ".exe", ".rpm", ".deb". If you are not able to upgrade to Firefox ESR 102.0.1 or Firefox 103 when it is released, then as a workaround you can:
- Manually add a file extension to the file name after download.
- Use a different browser

Core-libs/java.io:serialization:
Vector Should Throw ClassNotFoundException for a Missing Class of an Element:
- Java.util.Vector is updated to correctly report ClassNotFoundException that occurs during deserialization using java.io.ObjectInputStream.GetField.get(name, object) when the class of an element of the Vector is not found. Without this fix, a StreamCorruptedException is thrown that does not provide information about the missing class.

Core-libs/java.util.jar:
Default JDK Compressor Will Be Closed when IOException Is Encountered:
- DeflaterOutputStream.close() and GZIPOutputStream.finish() methods have been modified to close out the associated default JDK compressor before propagating a Throwable up the stack. ZIPOutputStream.closeEntry() method has been modified to close out the associated default JDK compressor before propagating an IOException, not of type ZipException, up the stack.

Java JRE 8 Update 341 (64-bit) 相關參考資料
Download Java 8 Update 341 (Offline Installers)

This is required to run applications and programs written in the Java programming language. Moreover, this update addresses 349 security vulnerabilities which ...

https://www.itechtics.com

Download Java Runtime Environment (64bit) 8 Update 341 ...

2022年7月21日 — JRE comprises a set of libraries, class libraries, and other essential files that are required to run Java applications efficiently and securely ...

https://www.filepuma.com

Downloading Java JRE 8 Update 341 (64-bit) ...

With Java (JRE) you can run Java applications on your Windows PC! · Java JRE 8 Update 341 (64-bit) · Key details about this download.

https://www.filehorse.com

Java 8 發行版本變更

Java 8 Update 341 (8u341). 發行版本重點. IANA 時區資料 ... 「Java 控制面板」中的 更新 標籤除了32 位元版本以外,還可以讓使用者自動更新已安裝在系統上的64 位元JRE。

https://java.com

Java SE 8 Archive Downloads (JDK 8u202 and earlier)

Solaris SPARC 64-bit, 46.07 MB. jre-8u202-solaris-sparcv9.tar.gz ; Solaris x64, 43.36 MB. jre-8u202-solaris-x64.tar.gz ; Windows x86 Online, 1.83 MB. jre-8u202- ...

https://www.oracle.com

Java SE 8 Archive Downloads (JDK 8u211 and later)

Java SE 8 Archive Downloads (JDK 8u211 and later) ; Windows x86 Compressed Archive, 74.64 MB. jre-8u391-windows-i586.tar.gz ; Windows x64 Installer, 64.37 MB. jre ...

https://www.oracle.com

Silent Installation of Java 8 Update 341 (64-bit) (8.0. ...

Java 8 Update 341 (64-bit) (8.0.3410.10) (JRE). Version, 8.0.3410.10. Platform, Windows. Vendor, Java. Architecture, 64-bit. Download Path, AutoDL. Silent ...

https://www.manageengine.com

下載Windows 專用的Java

下載Windows 適用的Java. Version 8 Update 401 (檔案大小: 64.43 MB) 為何建議Java 8? 發行日期:2024 年1 月16 日. 重要的Oracle Java 授權資訊. 各發行版本的Oracle ...

https://java.com

下載適用於所有作業系統的Java

2024年1月16日 — Java 軟體手動下載頁面。取得Windows、Solaris 以及Linux 專用的最新版本Java Runtime Environment (JRE)。包括Apple Mac 作業系統平台連結。

https://www.java.com