英文:
Java/Javascript: Is there information about font type in String?
问题
Java或JavaScript字符串中是否包含有关字体类型的信息?例如,像Arial、Comic Sans这样的字体类型。
如果是的话,我是否可以在传递到其他地方(如SQL数据库)之前更改字体类型?
英文:
Does Java or Javascript String contains the information about the font type? For example, font type like Arial, Comic Sans.
If yes, can I change the font type before passing in to other places like sql database?
答案1
得分: 2
Strings contain no information regarding font type.
如果您正在处理网页,字体系列将在您的CSS文件中声明。
英文:
Strings contain no information regarding font type.
If you are working on a web page, the font family will be declared within your CSS file.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论