What's Covered
This tutorial illustrates how to append a CSV file containing User-Agent strings with IsMobile, PlatformName and PlatformVersion properties. The following aspects of the API are covered:
- How to perform a User-Agent match.
- How to reuse resources to perform subsequent matching.
- How to retrieve match results for a specific property.
- How to append a property value to a CSV file.
Code and Explanation
Example of using 51Degrees Pattern Detection to process a file containing User-Agent header values and output a CSV file containing the same header values with various properties detected by 51Degrees.
The example illustrates:
-
Loading a Provider from a Disk-based (Stream) Pattern Dataset
provider = new Provider(StreamFactory.create (Shared.getLitePatternV32(), false));
-
Matching a User-Agent header value
-
By creating a match and using it repeatedly (for efficiency)
Match match = provider.createMatch();
provider.match(userAgentString, match);
-
By having the provider create a new Match for each detection
Match match = provider.match(userAgentString);
-
By creating a match and using it repeatedly (for efficiency)
-
Getting the values for some properties of the matched User-Agent header
Values isMobile = match.getValues("IsMobile");
A property may have multiple values. Helper methods convert the list of values into a Boolean, Double etc. For example:
isMobile.toBool();
MetadataExample.main(java.lang.String[])
for a listing of which properties
are available in the dataset supplied with this distribution.
Summary
Offline device detection is frequently required for a variety of reasons such as generating reports. The example is based on an actual support request where several properties had to be added to the CSV file before it could be passed on for another department to use.
This tutorial covered how to use the detector offline to append the first 20 lines of a CSV file with Lite properties: IsMobile , PlatformName and PlatformVersion . Using a Premium or an Enterprise data file gives you access to a far greater number of properties including HardwareVendor , PriceBand , ScreenInchesWidth , IsCrawler and more. A full list of properties and the data file version they are present in can be viewed in the Property Dictionary .