[Tex/LaTex] How to include a Chinese paper in reference via bibtex

bibtexunicode

When including the following entry in my ref.bib

@article{chen2012,
  title={基于电无级变速器的内燃机最优控制策略及整车能量管理},
  author={陈骁 and 黄声华 and 万山明 and 庞珽},
  journal={电工技术学报},
  volume={27},
  number={2},
  pages={133--138},
  year={2012}
}

it shows up as

enter image description here

I'm using

\documentclass{article}
\usepackage{cite}
\usepackage{bibentry}
\nobibliography*

\begin{document}

\bibentry{chen2012}

is used for XXX study.

\bibliographystyle{IEEEtran}

\bibliography{ref}

\end{document}

Best Answer

Here an example which uses CJK. The compilation is shown by the rules of arara.

% arara: xelatex
% arara: biber
% arara: xelatex
% arara: xelatex
\listfiles
\RequirePackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@article{chen2012,
  title={基于电无级变速器的内燃机最优控制策略及整车能量管理},
  author={陈骁 and 黄声华 and 万山明 and 庞珽},
  journal={电工技术学报},
  volume={27},
  number={2},
  pages={133--138},
  year={2012}
}
\end{filecontents*}


\documentclass[12pt]{article}

\usepackage{xeCJK}
\setCJKmainfont{SimSun}
\usepackage[style=alphabetic,maxnames=99,maxalphanames=5]{biblatex}
\addbibresource{\jobname.bib}

\begin{document}
\verb+\cite{chen2012}+\cite{chen2012}
\printbibliography
\end{document}

enter image description here