Book Image

NetBeans IDE 8 Cookbook

By : David Salter, Rhawi Dantas
Book Image

NetBeans IDE 8 Cookbook

By: David Salter, Rhawi Dantas

Overview of this book

<p>From the start to the end of a Java project's lifecycle, this book will show you how to perform many key tasks with the NetBeans IDE, uncovering more about mobile, desktop, and enterprise Java along the way.</p> <p>You will start by creating Java projects and learning how to refactor and use NetBeans tools to increase developer efficiency. You will then get a walkthrough of how to create a desktop application before covering JavaFX and mobile applications and how to use external services within them. Having seen how to create many different types of applications, you will then be shown how to test and profile them before storing them in revision control systems such as Git or Subversion. Finally, you will learn how to extend NetBeans itself by adding new features to the IDE.</p>
Table of Contents (19 chapters)
NetBeans IDE 8 Cookbook
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Getting a list of Delicious bookmarks


Delicious (http://delicious.com) is a free online service allowing users to maintain collections of bookmarks that can be tagged and shared with other members of the community. Not only can bookmarks be tagged and shared, but Delicious provides facilities to discover new bookmarks based upon an individual user's interests.

NetBeans integrates with the Delicious web services, providing rapid access to manage both Delicious posts and their associated tags.

In this recipe, we'll see how we can get a list of all the bookmarks that we've stored in Delicious based on querying for a specific tag.

Getting ready

To complete this recipe, you'll need a Delicious account. Creating a Delicious account is free and easy. Head on over to http://www.delicious.com and create an account if you haven't got one already.

Once you've created a Delicious account, let's continue and create a standalone console application to display our bookmarks.

You can use either the Java EE or...