I need OCR library(preferably in Java), which will be able to determine digit visualized on meter devices. Please see image. I’ve tried some libraries in Java but they was not able to determine this kind of font.

UPDATE 1:
Tesseract and Asprise libraries failed to perform this task
You could take a look at Tesseract, it’s a Google maintained open source OCR. However, I think that if you just supply the image as it is the OCR might have some issues, reason being that you have digits which vary in size, and this will most likely cause issues while the Neural Network(s) are learning.
So, I think that you would have a larger chance of success if you filter your image first and try to remove items that you do not need to identify and try to make the digits you need to read the same size.
EDIT: As per your edit, you can also take a look at Java OCR:
That being said, I still think that you should do some processing on your image first.