Home > Contents > Index >
FTValList.count
Gets the number of items (name/value pairs) in this
FTValList
.Syntax
public int count()Returns
Number of elements in the
FTValList
.Example
This example creates a
FTValList
and counts the number of name/value pairs:
cs.ClearErrno(); FTValList ft = Utilities.getParams("a=b&c=d"); if (cs.GetErrno() == 0) { int n = ft.count(); }
Home > Contents > Index > ![]()
Oracle JAVA Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.