Groovy script with special characters

Adolfo Casari
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 13, 2013
String currentUser = ((WorkflowContext) transientVars.get("context")).getCaller();
commmgr = (CommentManager) ComponentManager.getComponentInstanceOfType(CommentManager.class)
commmgr.create(issue, currentUser, "comment contain special charactes", true)
issue.store()

I have the above to create a comment in an issue after a transition.

The comment s text contain special characters like ñ or ó, but then in Jira they are displayed wrong. But if I typed them in jira they look OK.

What is the correct way to pass special characters in this case?

Thanks in advance,

2 answers

1 accepted

0 votes
Answer accepted
John Bishop
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 13, 2013

You may need to try representing the characters in a different way. Take a look at these for some examples:

http://www.javascripter.net/faq/mathsymbols.htm

http://www.digitalmediaminute.com/reference/entity/

0 votes
Henning Tietgens
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 13, 2013

You should take care that the encoding of the script file while editing is the same as the one used by JIRA and the underlying server. In our case it's all UTF-8. If you try the script from the console the comment should be added with the characters looking ok, right?

Suggest an answer

Log in or Sign up to answer