Jump to content

Recommended Posts

Posted (edited)

Some time ago I had the need to check and change some JAVA configuration  settings.
Here is the result of my work.

This UDF is desinged to manage JAVA Settings and Environment. This UDF is NOT designed to interact with JAVA Applets.

EXAMPLE:

#AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w- 4 -w 5 -w 6 -w 7
#Tidy_Parameters=/sort_funcs /reel
#AutoIt3Wrapper_Run_Tidy=Y

#include "JavaManagement.au3"

_Example()

Func _Example()
    Local $aRecommendedVersion = _JavaMan_Version_Latest()
    If Not @error Then
        _ArrayDisplay($aRecommendedVersion, '$aRecommendedVersion')
    EndIf

    Local $aInstaledVersion = _JavaMan_Version_Instaled()
    If Not @error Then
        _ArrayDisplay($aInstaledVersion, '$aInstaledVersion')
    EndIf

    MsgBox($MB_ICONINFORMATION, '_JavaMan_Version_IsLatest()', _JavaMan_Version_IsLatest())

EndFunc    ;==>_Example

Downolad section:

Regards,
mLipok

Edited by mLipok
Link to download section, added example

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...