How to check ranges of java versions in javascript? -


i stuck: how check if user has specified java requirement? need find ranges (for instance java versions between 1.5.0_10 , 1.6.0_10). using javadeploy.js oracle , using versioncheck method can't figure need pass inside versioncheck method ranges such example provided.

try this:

var lower = deployjava.versioncheck("1.5.0_10+"),     higher = deployjava.versioncheck("1.6.0_10+") if (lower && !higher) {     // between 1.5.0_10 && 1.6.0_10 } 

reference:


Comments

Popular posts from this blog

matlab - How to equate a structure array to structure array -

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -