Siddhu
Siddhu

Reputation: 1248

Whether using HTML codes in the Java will only work on internet system ?

I am developing desktop application. In that I use some HTML code for line break (wrapping text) and change tab size in JTabbedPane.

If I use the application in a system without internet, will the HTML code will work or not?

Upvotes: 0

Views: 53

Answers (1)

anubhava
anubhava

Reputation: 785581

Using HTML tags in your application doesn't make it dependent on a working Internet connection. However make sure your application is not using some HTML DTD or schema spec for strict HTML validation.

I guess you could have found it yourself by trying.

Upvotes: 1

Related Questions