English 中文(简体)
如何显示已登记的商标编号
原标题:how to display registered trademark symbol ® in unix
  • 时间:2011-03-16 13:39:04
  •  标签:
  • java
  • unix

How to display registered trademark symbol ® unix environment. In this symbol working in window environment, but it not working unix environment.I am having paragraph in java file.displaying this symbol when working in windows environment, but move to unix(server) symbol not displaying in the format(®).

String str="stackoverflow ® ";

这是向客户发送电子邮件的信息。 在窗口运行时发送电子邮件正确格式。 但是,当使用不准确(服务器)时,没有发送正确的格式。

这里存在什么问题?

When sending email from window system that email displaying correct format.But not unix system.

Example: original message="stackoverflow ®" Getting email message="stackoverflow ÿ"

What is resaon behind in this ?

问题回答

发送电子邮件。

我怀疑,问题在于你正在构造和/或发送邮件;例如,在内容类型/性质上,你正在具体说明。 但我们只能猜测,除非你将相关守则张贴在后面......


@Paŭlo Ebermann建议,如果你将特殊性质直接纳入你的法典,那么,如果汇编者使用错误的特性制定/编码,读出你的源代码,你就可以将问题汇编成册。 你们可以完全避免这些问题,办法是利用统法协会的逃脱;例如,修改你的法典以说:

    String message = "stackoverflow u00AE";

而不是

    String message = "stackoverflow ®";

海事组织是一个好的想法,即使这不是造成你问题的原因。

正如斯蒂芬·C所说,一个可能的原因可能是建立电子邮件。

另一种可能的原因是汇编——如果你不指明其他内容,则汇编者使用你的系统default nature set,而这种缺省性在窗户和贵重系统中可能有所不同。

考察源文档是如何编码的,并向汇编者提供<编码>-encoding参数。

或者,为了做到独立,你可以在源代码中写上<代码>u00AE。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签